Skip to content

Instantly share code, notes, and snippets.

@zoonderkins
Last active December 16, 2021 08:45
Show Gist options
  • Save zoonderkins/a1e5adffe2d1eb6d9cc705c4b25d759b to your computer and use it in GitHub Desktop.
Save zoonderkins/a1e5adffe2d1eb6d9cc705c4b25d759b to your computer and use it in GitHub Desktop.
convert png to jpg cli

Convert PNG to JPG via Imagick cli

mogrify -format jpg *.png

List too long issue

find ./ -name '*.png' -maxdepth 1 -exec mogrify -format jpg {} \;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment