Skip to content

Instantly share code, notes, and snippets.

@otknoy
Created December 5, 2015 17:01
Show Gist options
  • Save otknoy/85e001d40c3addb0f0b4 to your computer and use it in GitHub Desktop.
Save otknoy/85e001d40c3addb0f0b4 to your computer and use it in GitHub Desktop.
画像ファイルを一括リサイズ
for f in `ls *.jpg`; do convert -resize 120x90 $f `basename ${f} .jpg`_s.jpg; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment