Is there a way to utilize command line continuation in DOpus custom batch commands? The standard Windows method of doing this is ^
at the end of each line to be continued, followed by CRLF
, some other character (which gets removed), and then the continued command, like so:
ExifTool -m -charset iptc=utf8 -IPTC:CodedCharacterSet=UTF8 ^
"-EXIF:ImageDescription<${EXIF:ImageDescription;s/^(?:\xEF\xBB\xBF)?//}" .
The above code works when I run it from a batch file outside of DOpus, but inside of DOpus I get “The system cannot find the file specified” (the dot at the end of the command tells ExifTool to operate on all files in current directory).