Created
August 13, 2024 09:27
-
-
Save dewomser/1666ad6283be13d51ed885709f8f309b to your computer and use it in GitHub Desktop.
make txt file from all images , use exif. Bash 1-liner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Linux #bash | |
Für eine Fotoshow, soll für jedes Photo(*5-17) eine gleichlautende Datei aber mit Endung txt erstellt werden. | |
Schreibe die "Keywords" aus den Exif Metatags da rein. | |
Es wird exiftool benötigt | |
KI hat bei der Erstellung des 1-Zeilers mitgeholfen | |
for i in {05..17} ;do photo=foto$i; exif=$(exiftool -Keywords $photo.JPG); echo -e "Fotosammlung\nFoto $photo\n $exif "> $photo.txt ;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment