ExifTool Forum

ExifTool => Newbies => Topic started by: BruceK on July 19, 2023, 03:17:19 PM

Title: Using an imagesourcefile
Post by: BruceK on July 19, 2023, 03:17:19 PM
Rather than

>exiftool image1.jpg image2.jpg image3.jpg >results.txt

I would like to use a sourcefile instead, such as

>exiftool <image_sourcefile.txt >results.txt


where image_sourcefile.txt is

c:\dir1\image1.jpg
c:\dir2\image2.jpg
c:\dir3\image3.jpg

Is there a correct syntax for this?

Thanks.


Title: Re: Using an imagesourcefile
Post by: Phil Harvey on July 21, 2023, 08:15:49 AM
This is the command:

exiftool -@ image_sourcefile.txt > results.txt

- Phil