shithub: riscv

ref: 6b5f6b9a739a8b7cf73c129f8723c66a0cda2837
dir: /rc/bin/diffy/

View raw version
#!/bin/rc
# diffy [diff-opts] file... - diff file against yesterday's version(s)
rfork e
diffopts=()
while(! ~ $#* 0 && ~ $1 -* && ! ~ $1 --){
	diffopts=($diffopts $1)
	shift
}
if(~ $1 --)
	shift
if(! ~ $#* 1)
	diffopts=($diffopts -m)
for(f)
	diff $diffopts `{yesterday $f} $f