Skip to content

Instantly share code, notes, and snippets.

@innermond
Created December 18, 2014 20:26
Show Gist options
  • Select an option

  • Save innermond/46c1d4e303e470fd046e to your computer and use it in GitHub Desktop.

Select an option

Save innermond/46c1d4e303e470fd046e to your computer and use it in GitHub Desktop.
resize last 10 jpgs
for file in $(ls *.jpg -t | head -n 11); do convert $file -resize 50% $file; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment