Work on a given list in a text file

Started by fmarzolo, August 12, 2022, 04:21:10 PM

Previous topic - Next topic

fmarzolo

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?

Phil Harvey

If your text file is called "files.txt", then the command is:

exiftool -model="camera model" -@ files.txt
- Phil
...where DIR is the name of a directory/folder containing the images.  On Mac/Linux/PowerShell, use single quotes (') instead of double quotes (") around arguments containing a dollar sign ($).

fmarzolo