tag content with linebreaks starting with a hyphen

Started by mstorhas, September 05, 2011, 10:57:57 AM

Previous topic - Next topic

mstorhas

Hi,
I'm using exiftool via the command line interface in a windows environment. In order to overcome issues with linebreaks in tag content, I use the redirect operator in combination with $/, e.g.
exiftool -o b.jpg "-IPTC:SpecialInstructions<line1$/line2" a.jpg
This works fine, as long as the tag content does not start with a hyphen:
exiftool -o b.jpg "-IPTC:SpecialInstructions<-line1$/line2" a.jpg
which will yield
QuoteError: Can't redirect excluded tag - a.jpg
. Obviously exiftool interprets the hyphen as an
Quoteexclude tag
directive. Is there an easy way to get around that issue? Without having to use files to read tag content from?
Thanks, Martin

Phil Harvey

Hi Martin,

I can't reproduce this problem in a Mac Terminal:

> exiftool -o b.jpg '-IPTC:SpecialInstructions<-line1$/line2' a.jpg
    1 image files created

> exiftool b.jpg -iptc:specialinstructions -b
-line1
line2


I had to change the quotes for the Mac, but I don't see why this should work differently in Windows.

My only guess is that you are using an old version of ExifTool, and that this problem may have been fixed.  The current version is 8.63.

- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

StarGeek

I just tried this on my windows machine, version 8.61 and the hyphen was added into the file with no error.
"It didn't work" isn't helpful. What was the exact command used and the output.
Read FAQ #3 and use that cmd
Please use the Code button for exiftool output

Please include your OS/Exiftool version/filetype

mstorhas

Yep! I was using 8.4.1, sorry for the hassle...

Great tool and service!

Regards, Martin