Howto resize multiple pictures, graphics, images
for k in $(ls *.jpg); do convert -resize 800 -quality 80 $k r800-$k; done
DZone Snippets > flynets > images
11455 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Flynets is an italian student of computer science with passion for GNU/Linux and hacktivism.
for k in $(ls *.jpg); do convert -resize 800 -quality 80 $k r800-$k; done