shithub: rc

ref: f7e9f4873a050552f9d197269cb028f78f8f20d7
dir: /bin/pa4/

View raw version
#!/bin/rc -e
for(i in $*){
	if(! test -f $i){
		echo usage: $0 patch..
		exit usage
	}
	h=`{sed 's,--- //.git/fs/.*,git,;q' $i}
	p=1
	if(~ git $h)
		p=0
	ape/patch --no-backup-if-mismatch -p$p <$i
}