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.
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.
Thanks a lot! You help me very much