#!/bin/sh #\- diff on filelist, for current vs other directory #usage: %diff.find other_directory_path file_list........ #compare files of same name in another directory, #using a straight and simple diff, #with those on the filelist in the working directory #results are stored in Diff.all #j.a. rupley, tucson, arizona >Diff.all aaa=$1 shift for i in $* do /bin/echo "****$i compared with $aaa/$i" >> Diff.all /usr/bin/diff $i $aaa/$i >>Diff.all done