Skip to content

Instantly share code, notes, and snippets.

@toshi3221
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save toshi3221/ce8c4ce90e4e8749802d to your computer and use it in GitHub Desktop.
Save toshi3221/ce8c4ce90e4e8749802d to your computer and use it in GitHub Desktop.
ffmpegにかける為、連番にするスクリプト
i=0 ; for f in $(ls -1 *.JPG | sort -t'-' -k2h)
do
mv "$f" $(printf "out/%04d.jpg" $i)
$((i++)) > /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment