The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > OS Specific Forums > Linux
Google UNIX.COM


Linux RedHat, Ubuntu, SUSE, Fedora, Debian, Mandriva, Slackware, Gentoo linux, PCLinuxOS. All Linux questions here!

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
whole word substitution in SED gikay01 Shell Programming and Scripting 7 07-16-2008 01:51 PM
Last word substitution capri_drm Linux 4 06-10-2008 03:19 AM
word substitution in unix capri_drm Linux 6 05-14-2008 11:36 AM
How to use sed substitution using a $variable for a line containing a word Sangal-Arun Shell Programming and Scripting 4 08-07-2007 04:09 PM
word substitution in csh oprestol Shell Programming and Scripting 1 09-15-2005 08:15 PM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-13-2008
Registered User
 

Join Date: May 2008
Location: St. Louis
Posts: 70
Stumble this Post!
Multiple files and word substitution

Hi ,
I have bunch of sql file which contain UHCDEV01 in them . I want to replace all the UHCDEV01 with UHCETL01 in all the files. I have written this code which shows correct output on sh -x but doesn't change the output file .

#cat change_dbname.shl
#!/bin/ksh
####################################

ls -ltr *.sql | awk '{ print $9 } ' | while read file
do
sed -e 's/UHCDEV01/UHCETL01/g' $file > $file1
done


Thanks in advance
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 06-13-2008
Registered User
 

Join Date: May 2008
Location: St. Louis
Posts: 70
Stumble this Post!
Solution was in some thread .

cat word_replace.shl
#!/bin/ksh

for y in `ls *.sql`;
do sed "s/UHCDEV01/UHCETL01/g" $y > temp; mv temp $y;
done

found it .

Thread closed .
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 11:49 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0