Skip to content

Instantly share code, notes, and snippets.

@dipeshdulal
Created September 25, 2020 13:31
Show Gist options
  • Save dipeshdulal/9f4657f84bf4a3b36dd6e1c6572287f8 to your computer and use it in GitHub Desktop.
Save dipeshdulal/9f4657f84bf4a3b36dd6e1c6572287f8 to your computer and use it in GitHub Desktop.
File Conversion .png using convert

Bash script to covert all png files present in a directory.

for entry in *.png           
do
  convert $entry -quality 50 $entry
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment