Compare commits

...

2 Commits

Author SHA1 Message Date
Fulton Browne eefb86dd3e hg stuff 2021-03-22 21:08:26 +00:00
Fulton Browne 5d5a77c752 hg mirrors 2021-03-22 20:59:53 +00:00
2 changed files with 21 additions and 0 deletions

14
mirror/hggen Executable file
View File

@ -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
}

7
mirror/hgpull Normal file
View File

@ -0,0 +1,7 @@
#! /bin/rc -e
cd $1
for (i in *){
cd $i
hg pull -u
cd ..
}