Sed:- Supported variable replacement after string match?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Sed:- Supported variable replacement after string match?
# 1  
Old 07-19-2013
Sed:- Supported variable replacement after string match?

Hi All,

I am trying to replace the variable in the file after the particular match string. It is being replaced if i hardcode the value and with use of "&" with sed.

Code:
 
sed -e "s/URL./& http:\\localhost:7223/g"

But when am trying to pass the variable it is failing. I tried multiple options mentioned below.

Code:
 
sed -e "s/URL./& $url/g" 
or 
sed -e "s/URL./&\ $url/g" 
or
sed -e "s/URL./&\ |$url/g"

Error

Code:
 
sed: -e expression #1, char 16: unknown option to `s'

Can I anyone suggest if sed replacement support variable with "&".
# 2  
Old 07-19-2013
put single quote or double quote for your vaiable.

Code:
 
sed -e 's/URL./&'$url'/g'

or

Code:
 
sed -e "s/URL./&"$url"/g"

# 3  
Old 07-19-2013
Hi Milan,

It is giving the same issue.

If i go with
Code:
 
sed -e 's/URL./&"$url"/g'

it is replacing the $url as it is instead of replacing the value of variable.

For rest of the option. I am still getting the same error.

Code:
sed: -e expression #1, char 25: unknown option to `s'

# 4  
Old 07-19-2013
you have to use either single quote or double quote everywhere..check my code,
# 5  
Old 07-19-2013
I have tried both single quotes everywhere and double quotes everywhere.
It straight away giving me the expression error
Code:
 
sed: -e expression #1, char 25: unknown option to `s'

# 6  
Old 07-19-2013
It works without any issue. Can you print the $url before the sed statement to see what goes into sed ?

Code:
$ url='http:\\\\localhost:7223'
$ echo "URL." | sed -e "s/URL./& $url/g"
URL. http:\\localhost:7223

# 7  
Old 07-19-2013
Hi Raja,

I have tried that multiple time but getting the same issue.

Pasting my script.

Code:
 
#! /bin/bash
HSFILE=/home/user/Temp/Test/Log/Server2/Components.txt
num=1
while IFS="|" read url port 
do
 echo "URL is $url Port is $port"                                
 < Monitor_Template.txt sed -e "s/HawkController./& $url/g" > "/home/user/Temp/Test/Log/Server2/Server1/Monitor_Template_$num.txt"
 
 num=$(($num+1))
 echo "Welcome"
 done < $HSFILE

Input File:- Components.txt

Code:
 
tcp://localhost.com:7222|7222
tcp://localhost.com:7223|7223
tcp://localhost.com:7224|7224

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Sed: how to use file contents in replacement string

I want to replace a string by contents of file. I am trying the following sed command: cat sample | sed "s^<enter description here>^`cat details`^" But it is not working. a=`cat details` and using $a will not help since it will affect the whitespaces. What am I missing in the above sed... (5 Replies)
Discussion started by: anand_bh
5 Replies

2. Shell Programming and Scripting

sed replacement in file when line is in a variable

Hi, I have a file where I want to replace the 15th field separated by comma, only on specific lines matching lots of different conditions. I have managed to read the file line by line, within the loop my line is held in a variable called $line I assume this will be using sed (maybe... (5 Replies)
Discussion started by: jpt123
5 Replies

3. Shell Programming and Scripting

Use regex in replacement string in SED

Hi, I need to use the regex in the replacement string in SED command. something like sed -e ' s/\(^\{5\}\).\{150\}\(.*\)$/\10\{30\}1\{30\}A\{60\}B\{30\}\2/' abc which means for all the lines in file abc that starts with 5 characters, I need to replace character 6-151... (6 Replies)
Discussion started by: snowline84
6 Replies

4. UNIX for Dummies Questions & Answers

sed string replacement question

Hey everybody. I've got a simple problem but am unsure how to resolve it. I am using a script to edit multiple files at once. Inside the script I am using an sed command to make the changes. My problem is that I can only get it to work for stings that contain a word or words. How can I modify it to... (1 Reply)
Discussion started by: iwatk003
1 Replies

5. Shell Programming and Scripting

Date Pattern Match (replacement string)

Hello, i am splitting files and sometimes the string of the pattern doesnt exist in the input file it starts for example with 00:00:01. So the output is completely desorganized, is there any way of putting a replacement string in the pattern so it will grab all the times from 00:**:** to first... (0 Replies)
Discussion started by: x-plicit78
0 Replies

6. Shell Programming and Scripting

Exact String replacement with sed

Hi, What should be the syntax to match and replace an exact string using sed? And not replacing any string that contain the value? Eg. testtest etstetst testetst testtttt etsttest testtesttest testtest I only want to replace the line with exact string "testtest" with "123456" ... (2 Replies)
Discussion started by: srage
2 Replies

7. Shell Programming and Scripting

SED complex string replacement

sed -i 's:"ps -ef | grep $(cat $PID_FILE) | grep -v grep":"ps -C java -o pid,cmd | grep ${SERVER_NAME} | cut -d' ' -f1 | grep -v grep":g' scriptName That's what I'm attempting to do. I'm attempting to replace this: ps -ef | grep $(cat $PID_FILE) | grep -v grep with this: ps -C java -o... (5 Replies)
Discussion started by: cbo0485
5 Replies

8. Shell Programming and Scripting

String replacement using sed

I need to search and replace a particular string in a file. Only the exact match of the string should be replaced. eg: File contents : abc abcd abcdef --> Replace only 'abc' with 'xyz', but it should not replace abcd with xyzd. So the o/p should be: xyz abcd abcdef. How can this be done? I... (5 Replies)
Discussion started by: sngk
5 Replies

9. Shell Programming and Scripting

how to use a command in sed s/match/replacement

hi, how can i make use of a command in the replacement segment.. cat a | sed '/^*]\{3\}$/{ s/\(.*\)/REPLACEMENT/g }' suppose if I want to use a awk command in the replacement section , how to achieve that ? Thanks (1 Reply)
Discussion started by: AbhishekG
1 Replies

10. Shell Programming and Scripting

sed problem - replacement string should be same length as matching string.

Hi guys, I hope you can help me with my problem. I have a text file that contains lines like this: 78 ANGELO -809.05 79 ANGELO2 -5,000.06 I need to find all occurences of amounts that are negative and replace them with x's 78 ANGELO xxxxxxx 79... (4 Replies)
Discussion started by: amangeles
4 Replies
Login or Register to Ask a Question