Skip to content

Instantly share code, notes, and snippets.

@nestoralonso
Created February 24, 2023 23:00
Show Gist options
  • Save nestoralonso/15573ff4e59208151d76b57f289602c6 to your computer and use it in GitHub Desktop.
Save nestoralonso/15573ff4e59208151d76b57f289602c6 to your computer and use it in GitHub Desktop.
convert pngs to jpgs using xargs
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