[Originally posted by heiko on 2007-12-03 21:13:20-08]
Hello,
I like to call ExifTool with the following params to delete the City from the Keywords:
ExifTool -IPTC:Keywords-=IPTC:City *.jpg
But it does not work. What is wrong? Or does this not work?
Heiko
[Originally posted by exiftool on 2007-12-03 23:18:31-08]Hi Heiko,
The
-= argument expects a tag value on the RHS, but
you want to use a tag name, so you need to use the
-tagsfromfile feature that allows you to copy
(or with "
-", delete) a tag value by specifying
the tag name:
exiftool "-iptc:keywords-<iptc:city" *.jpg
See the
-tagsFromFile documentation for details. In
the above command,
-tagsFromFile @ is assumed.
- Phil
[Originally posted by heiko on 2007-12-04 07:33:57-08]
Hi Phil,
thank you for your answer. It works ..
Heiko