shithub: riscv

ref: 86a9f92f47f9cb5d9eb3806e458d856b0ee81b08
dir: /rc/bin/sysupdate/

View raw version
#!/bin/rc
rfork en
source=https://code.9front.org/hg/plan9front
cd /
if(! test -d .hg)
	bind -ac /dist/plan9front /
while(! ~ $#* 0){
	switch($1){
	case -i
		hg incoming $source
	case *
		echo usage: sysupdate '[-i]' >[1=2]
		exit usage
	}
	shift
}
hg -v pull -u $source