-
-
Save vordan/1df87bf0360f932bcaf2d8ac86c5d89b to your computer and use it in GitHub Desktop.
Convert Image Formats On Command Line
This file contains hidden or 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
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