9scripts/mirror/hggen

15 lines
264 B
Bash
Executable File

#! /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
}