home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
unix
/
volume27
/
distributed-c-2.1
/
part01
/
bin
/
subst
< prev
Wrap
Text File
|
1993-12-22
|
212b
|
12 lines
for file in $*
do
case $file in
$1) ;;
$2) ;;
*) echo "processing file $file...\c";
sed -e s/$1/$2/g $file > $file.tmp ;
mv $file.tmp $file ;
echo "done."
esac
done