ExifTool Forum

ExifTool => The "exiftool" Application => Topic started by: berlog on October 07, 2020, 12:06:17 PM

Title: Batch process in macOS
Post by: berlog on October 07, 2020, 12:06:17 PM
I would really appreciate your support. I need to copy all EXIF info from one file to another and use this command in macOS:

exiftool -TagsFromFile srcimage.jpg "-all:all>all:all" targetimage.jpg

it works perfect. How can i do it for many files? Source and target files in different folders and have the same names.
Title: Re: Batch process in macOS
Post by: StarGeek on October 07, 2020, 12:14:47 PM
Basically this example (https://exiftool.org/exiftool_pod.html#exiftool--tagsfromfile-d-f.CR2--r--ext-JPG-dir).  Just replace the %d with the path to the source files.  If the filenames are exactly the same, replace %f.CR2 with %F.

And just use -All:All.  You don't need the redirection.
Title: Re: Batch process in macOS
Post by: berlog on October 08, 2020, 05:05:40 AM
Thanks a lot! You help me very much