The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #2 (permalink)  
Old 12-01-2005
sssow sssow is offline
Registered User
  
 

Join Date: Aug 2001
Posts: 179
You can use perl itself

for filename in *.pl
do
perl -p -i.bak -e "s/myUtil/myUtil777/g" $filename
done