#!/bin/sh #\- diffc on filelist, for current vs other directory #usage: %diffc.find other_directory_path file_list........ #compare files of same name in another directory, #using a context diff'er, diffc, #with those on the filelist in the working directory #results are stored in Diffc.all #j.a. rupley, tucson, arizona >Diffc.all aaa=$1 shift for i in $* do diff -c $i $aaa/$i >>Diffc.all done