Created
April 30, 2023 17:53
-
-
Save zycon/856c7eac09612287f81f4dc08d509d96 to your computer and use it in GitHub Desktop.
Bash Loop iteration on commands
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
// converting canon cr2 images to jpeg | |
//create a folder named "Converted" | |
for i in *.CR2; do sips -s format jpeg $i --out Converted/$i.jpg;done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment