Created
December 18, 2014 20:26
-
-
Save innermond/46c1d4e303e470fd046e to your computer and use it in GitHub Desktop.
resize last 10 jpgs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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