ref: 24bccc805ce7299d107c3e29a65beddb7ee60c1f
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