[Originally posted by linuxuser on 2006-11-12 00:48:44-08]
I have 2 files, an original and a modified. I would like to copy _all_ tags from the originalfile, _if_ the modified file doesn't contain a tag anymore, but the tag should be untouched, if it contains data. Thank you!
[Originally posted by exiftool on 2006-11-12 12:20:28-08]Using the command-line interface, the easiest way to do
this is to copy all tags from the file, then overwrite them
with the tags from the original file to preserve the existing
tags. ie)
exiftool -tagsfromfile original.jpg -all:all -tagsfromfile modified.jpg -all:all modified.jpg
I think this will do what you want.
- Phil