Created
February 24, 2023 23:00
-
-
Save nestoralonso/15573ff4e59208151d76b57f289602c6 to your computer and use it in GitHub Desktop.
convert pngs to jpgs using xargs
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
ls -1 *.png | xargs -n 1 bash -c 'convert "$0" "${0%.png}.jpg" && rm "$0"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment