Skip to content

Instantly share code, notes, and snippets.

@tuxflo
Created January 31, 2018 21:13
digikam import.sh
#!/bin/bash
FILE=$1$2 #hier wird der komplette Dateiname der Datei (Pfad + Name) erstellt
DEST=$3
if [ -e $FILE.xmp ]; then # xmp vorhanden, kopiere sie in den neuen Pfad
cp $FILE.xmp $DEST
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment