The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

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 -->
  #4 (permalink)  
Old 11-17-2008
Lakris Lakris is offline
Registered User
  
 

Join Date: Oct 2007
Posts: 246
Hi, another view, and a question; are all the files You want to change in the same directory? Then You could try something like

Code:
sed -i.bak -e "s_/bb/bin/msga/mm 80\&_/bb/bin/mm 80\&_g" *
the -i.bak saves the original with a bak-extension just in case.

/Lakris