ref: 7820b114e08c9bd1705a7b253034b69cfda1668e
dir: /mirror.rc/
#!/bin/rc webfs cd /usr/glenda/src/repodir repos=`{hget http://shithub.us/git/repos.html | grep '<dt><a href=' | sed 's,.*">(.*)</a></dt>,\1,g'} for (repo in $repos) { date=`{date} if (test -d $repo) { echo pull $repo at $"date >> /sys/log/shithubmirror cd $repo if(git/pull) { cd ../../ } if not { cd ../../ rm -rf $repo echo re-clone $repo at $"date >> /sys/log/shithubmirror git/clone git://shithub.us/$repo $repo } } if not { echo re-clone $repo at $"date >> /sys/log/shithubmirror git/clone git://shithub.us/$repo $repo } } echo Mirroring done