Created
May 11, 2013 21:40
-
-
Save dahoo/5561515 to your computer and use it in GitHub Desktop.
Revisions
-
dahoo created this gist
May 11, 2013 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ no=$1 # number of screenshots as argument sec=1 # interval of screenshots in seconds, also floats possible sleep 5 # optional s = 0 for i in $(seq $no); do sleep $sec s = $(($i*$sec)) echo "$s seconds of $(($no*$sec))" import -window root image_$(seq -f %0011f $i $i | cut -d ',' -f 1).png done