Skip to content

Instantly share code, notes, and snippets.

@amano41
Created July 2, 2014 05:35
Show Gist options
  • Save amano41/318394827be28eaf0ba5 to your computer and use it in GitHub Desktop.
Save amano41/318394827be28eaf0ba5 to your computer and use it in GitHub Desktop.
タイムスタンプを変更せずに画像を変換する。
#!/bin/sh
for file in *.jpg
do
out=${file%.*}.png
convert $file -rotate 90 $out
touch -r $file $out
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment