ref: 68aa4d5254c8e68171b19887dc39d8ca5f52d854
dir: /rc/bin/diffy/
#!/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