No longer need to sanitize out tx39 bits

This commit is contained in:
Stan Shebs 1998-08-14 22:52:18 +00:00
parent 1e012223fd
commit c905465b00
1 changed files with 0 additions and 27 deletions

View File

@ -609,33 +609,6 @@ else
done
fi
if ( echo $* | grep keep\-tx39 > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-tx39 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping tx39 stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-tx39 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"tx39\" from $i...
fi
cp $i new
sed '/start\-sanitize\-tx39/,/end-\sanitize\-tx39/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
if ( echo $* | grep keep\-tx49 > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-tx49 $i > /dev/null) ; then