Front page | perl.beginners |
Postings from February 2002
help for sed
Thread Next
From:
r p
Date:
February 6, 2002 06:58
Subject:
help for sed
Message ID:
20020206145804.53603.qmail@web20610.mail.yahoo.com
hi everyone.
i am trying to use sed in order to change all my batch
script.
the pb is:
i have the following batch:
@echo on
TIMETHIS.exe k:\Validation\Soft\abc.exe
k:\test_1.sct k:\Validation\PlugIn\abc.link >>
k:\test_1.log
@echo off
exit
------------------------------------
i want to delete all character after abc.link
how can i do with the command sed.
i have written this. but it does not work
--------------------------------------
chem=K:/Validation/try
cd $chem
echo "Creation Of All '*.bat files ..."
find -type f -iname '*.bat' > list.txt
for i in `cat list.txt`
do
echo "Processing File $i .."
if [ -f $i.new ]; then rm -f $i.new ;fi;
sed -e ' s/^>>//g' $i > temp
mv temp $i
done
echo "Done."
-------------------------
thanks for your help
___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.fr
Thread Next