home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume27 / distributed-c-2.1 / part01 / bin / subst < prev   
Text File  |  1993-12-22  |  212b  |  12 lines

  1. for file in $* 
  2. do
  3.     case $file in
  4.         $1) ;;
  5.         $2) ;;
  6.         *) echo "processing file $file...\c"; 
  7.        sed -e s/$1/$2/g $file > $file.tmp ; 
  8.        mv $file.tmp $file ;
  9.        echo "done."
  10.     esac
  11. done
  12.