Created
June 18, 2014 18:39
-
-
Save yuya/d4af2905a982eea8c2ba to your computer and use it in GitHub Desktop.
1日以内の lolcommits 画像を GIF アニ化する Shell script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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