Skip to content

Instantly share code, notes, and snippets.

@dewomser
Created August 13, 2024 09:27
Show Gist options
  • Save dewomser/1666ad6283be13d51ed885709f8f309b to your computer and use it in GitHub Desktop.
Save dewomser/1666ad6283be13d51ed885709f8f309b to your computer and use it in GitHub Desktop.
make txt file from all images , use exif. Bash 1-liner
#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