exiftool -Comment='This is a new comment' dst.jpgすでに存在するコメントを置き換えます。代わりに文字列を追加するにはどうすればよいですか?
exiftool -Comment='This is a new comment' dst.jpg
これを使って:exiftool '-Comment<$Comment Stuff added to comment' dst.jpg
exiftool '-Comment<$Comment Stuff added to comment' dst.jpg
タグをコピーするだけでなく、コンテンツを追加するため、値の割り当て構文 "="の代わりにタグコピー構文 "<"を使用する必要があります。