Skip to content

Instantly share code, notes, and snippets.

@fasiha
Created August 31, 2020 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fasiha/2ebdc4337bff4a3c6ad6e150000bd4de to your computer and use it in GitHub Desktop.
Save fasiha/2ebdc4337bff4a3c6ad6e150000bd4de to your computer and use it in GitHub Desktop.
for f in $@; do
d=`exiftool -dateFormat "%Y-%m-%d %H.%M.%S" -CreateDate "$f" | tail -n1 | cut -d: -f2- | sed 's/^ //'`;
b=$(basename "$f");
final="$d-$b";
echo $final;
mv "$f" "$final"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment