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 -->
  #3 (permalink)  
Old 09-02-2006
natesan81 natesan81 is offline
Registered User
  
 

Join Date: Aug 2006
Location: India
Posts: 2
Thumbs up Code

testfile.txt :

About Apple
Apple is a fruit
I like Apple Juice


Code

open(INFILE,"./testfile.txt")||die ("Cannot open testfile.txt");
open(OUTFILE,">./orange.txt")||die ("Cannot open orange.txt");
while($str=<INFILE>)
{
$str =~ s/Apple/Orange/g;
print OUTFILE $str;
}
close(INFILE);
close(OUTFILE);

Orange.txt


About Orange
Orange is a fruit
I like Orange Juice