Skip to content

Instantly share code, notes, and snippets.

@yuya
Created June 18, 2014 18:39
Show Gist options
  • Save yuya/d4af2905a982eea8c2ba to your computer and use it in GitHub Desktop.
Save yuya/d4af2905a982eea8c2ba to your computer and use it in GitHub Desktop.
1日以内の lolcommits 画像を GIF アニ化する Shell script
#!/bin/sh
cd ~/.lolcommits && rm -rf tmp && mkdir tmp && find . -name "*.jpg" -mtime -1 -print0 | xargs -0 -J % cp % tmp && convert -delay 15 tmp/*.jpg ani.gif && rm -rf tmp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment