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



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
problem using a pipe to grep ShellBeginner Shell Programming and Scripting 4 05-31-2009 09:14 AM
pipe report output to another server mirx Shell Programming and Scripting 2 04-05-2009 06:41 PM
pipe output to two files NobluesFDT UNIX for Dummies Questions & Answers 2 08-06-2008 05:54 PM
how to pipe output of here-document!! sami98 Shell Programming and Scripting 7 02-17-2008 10:40 AM
output string message to pipe princelinux High Level Programming 3 08-18-2006 02:09 AM

Reply
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Bulgarian Greek Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 07-01-2009
arsh arsh is offline
Registered User
  
 

Join Date: Aug 2007
Posts: 3
pipe output of grep to sed?

Is there a way I can do this:

search for text and replace line containing matched text with a different line?
For example:

"I want to replace text"

I want to search for replace and then change the line to

I am perplexed.

Hope that makes sense.

Thanks in advance.
  #2 (permalink)  
Old 07-01-2009
vikas_kesarwani vikas_kesarwani is offline
Registered User
  
 

Join Date: Jul 2008
Posts: 17
You can try this:

grep replace | sed 's/replace/perpleaxed/g'

Or you want to relpace line then;
grep replace | sed 's/I want to replace text/I am perplexed/g'
  #3 (permalink)  
Old 07-01-2009
scottn scottn is offline Forum Advisor  
VIP Member
  
 

Join Date: Jun 2009
Location: Zürich, CH
Posts: 1,051
You don't need to use grep at all. sed would be enough.

Code:
# Replace the whole line with a new one
sed -e "s/.*old_string.*/new_string/"

# Replace the chosen string with a new one
sed -e "s/old_string/new_string/"

# Replace every occurance of the chosen string with a new one
 sed -e "s/old_string/new_string/g"
  #4 (permalink)  
Old 07-01-2009
arsh arsh is offline
Registered User
  
 

Join Date: Aug 2007
Posts: 3
Let me be more specific here:

I have two variables in a shell script that I assign by reading contents of a file
The contents are as such
a="$var1=xyz"
b="$var1=abc"

I need to search a second file for occurences of $var1=xyz and replace it with
$var1=abc

I have used sed -s 's/'"$a"'/'"$b"'/g' which works fine but whenever the contents of variable a contain some special characters for example a="$var1=fdh&%4"
the replace is not working. If I change the value to just a="$var1=", the above sed works successfully to replace $var1= in the file to $var1=abc.

Can anybody please help?
  #5 (permalink)  
Old 07-01-2009
vikas_kesarwani vikas_kesarwani is offline
Registered User
  
 

Join Date: Jul 2008
Posts: 17
please put a backlash "\" before special characters

sed 's/\*/\@/g'


replaces * with @
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 10:25 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0