diff --git a/mirror/hggen b/mirror/hggen new file mode 100755 index 0000000..6399f29 --- /dev/null +++ b/mirror/hggen @@ -0,0 +1,14 @@ +#! /bin/rc -e + +cd $1 +repos=( \ + 'https://code.9front.org/hg/werc' \ + 'https://code.9front.org/hg/plan9front' \ + 'https://code.9front.org/hg/irc7' \ + 'https://code.9front.org/hg/ants' \ + 'https://code.9front.org/hg/drawterm' \ + ) + +for (i in $repos){ + hg clone $i +}