ExifTool Forum

ExifTool => Newbies => Topic started by: fmarzolo on August 12, 2022, 04:21:10 PM

Title: Work on a given list in a text file
Post by: fmarzolo on August 12, 2022, 04:21:10 PM
I have trouble searching how to work in a list of images (sparse in lightroom folder) to put "model" on selected files.

I have generated a text file from a LR collection, let me say:
D:\foto\1988\Grecia\1988-08 Grecia E-50019.jpg
D:\foto\1988\Grecia\1988-08 Grecia Z rimaste da santino Paolo-8001.tif
D:\foto\1989\1989-01 BO Lucio Dalla-Morandi-1001.jpg
...

then I would like exiftool would walk my file and put -model="camera model" only on these file
How can I do?
Title: Re: Work on a given list in a text file
Post by: Phil Harvey on August 12, 2022, 04:47:39 PM
If your text file is called "files.txt", then the command is:

exiftool -model="camera model" -@ files.txt
- Phil
Title: Re: Work on a given list in a text file
Post by: fmarzolo on August 12, 2022, 04:57:55 PM
Than you very much.