I wanted to build an awesome place for people to discuss module specific issues, but I don't have any more time for this, and there are much better places to discuss Perl-related issues. I'd recommend asking your question on Stack Overflow or on Perl Monks.
If you are looking for a Perl tutorial or Perl-related news, I hope these links will serve you well.
Posted on 2007-12-03 21:13:20-08 by heiko
Delete Keywords
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
Direct Responses: 6607 | Write a response
Posted on 2007-12-03 23:18:31-08 by exiftool in response to 6606
Re: Delete Keywords
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
Direct Responses: 6612 | Write a response
Posted on 2007-12-04 07:33:57-08 by heiko in response to 6607
Re: Delete Keywords
Hi Phil, thank you for your answer. It works .. Heiko
Direct Responses: Write a response