Skip to content

Instantly share code, notes, and snippets.

@vordan
Created May 25, 2016 18:41
Show Gist options
  • Save vordan/1df87bf0360f932bcaf2d8ac86c5d89b to your computer and use it in GitHub Desktop.
Save vordan/1df87bf0360f932bcaf2d8ac86c5d89b to your computer and use it in GitHub Desktop.
Convert Image Formats On Command Line
for i in *.jpg;
do
convert "$i" "${i%.*}.tif";
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment