Skip to content

Instantly share code, notes, and snippets.

@hasantayyar
Created May 16, 2012 09:14
Show Gist options
  • Save hasantayyar/2708957 to your computer and use it in GitHub Desktop.
Save hasantayyar/2708957 to your computer and use it in GitHub Desktop.
reduce and rename image
if [[ !-d "reduced" ]]; then
mkdir "reduced";
fi
b=0
for i in `ls -v`; do convert -quality 50 $i reduced/`printf %03d $b`.jpg; ((b++)); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment