bithub-cron - annna - Annna the nice friendly bot. | |
git clone git://bitreich.org/annna/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws6… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
--- | |
bithub-cron (164B) | |
--- | |
1 #!/bin/sh | |
2 | |
3 export PATH="$PATH:/home/annna/bin" | |
4 | |
5 i=0 | |
6 maxnew=$(($RANDOM % 5)) | |
7 while [ $i -lt $maxnew ]; | |
8 do | |
9 bithub-gen >/dev/null 2>&1 | |
10 i=$(($i + 1)) | |
11 sleep 2; | |
12 done | |
13 |