sed to replace a line with multi lines from a var


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting sed to replace a line with multi lines from a var
# 1  
Old 09-18-2012
[SOLVED] sed to replace a line with multi lines from a var

I am trying to find a line in a file ("Replace_Flag") and replace it with a variable which hold a multi lined file.

Code:
myVar=`cat myfile`
sed -e 's/Replace_Flag/'$myVar'/' /pathto/test.file

myfile:
cat
dog
boy
girl
mouse
house

test.file:
football
hockey
Replace_Flag
baseball

What I'd like to see is:
football
hockey
cat
dog
boy
girl
mouse
house
baseball

The above command works if "myVar" is a signal line. example:
Code:
 myVar="this is a line"

or a line with the new line deliminators
Code:
 myVar="line1\nline2\nline3"

I also tried reformating the variable.
Code:
 myNEWVar=`cat $myVar | tr '\n' ' '`

thus making it look like this: cat dog boy girl mouse house
however that did not work either.


any thoughts or suggestions would be greatly appreciated, thanks
# 2  
Old 09-18-2012
Variables not in double quotes will split. Put it in double quotes to stop it splitting.
Code:
myVar="`cat myfile`"
sed -e 's/Replace_Flag/'"$myVar"'/' /pathto/test.file

# 3  
Old 09-18-2012
Code:
 
sed '/Replace_Flag/r myfile' /pathto/test.file | sed '/Replace_Flag/d'

These 2 Users Gave Thanks to rdrtx1 For This Post:
# 4  
Old 09-19-2012
Quote:
Originally Posted by rdrtx1
Code:
 
sed '/Replace_Flag/r myfile' /pathto/test.file | sed '/Replace_Flag/d'

That's a much better solution than the original approach which is vulnerable to delimiters, backslash escape sequences, and ampersands in the replacement text. However, it suffers its own shortcoming: If the flag occurs in the replacement text, some (if not all) of the replacement text will be deleted.

Granted, that scenario is likely to be uncommon and it wasn't mentioned in the original problem statement, but since the fix is painless and also makes the solution more efficient, it seems like a good idea.
Code:
sed '/^FLAG$/{r myfile
d;}' /pathto/test.file

Regards,
Alister

Last edited by alister; 09-19-2012 at 12:10 PM.. Reason: The original sample data implies that the flag is the only text on the line, so anchor it.
This User Gave Thanks to alister For This Post:
# 5  
Old 09-19-2012
Quote:
Originally Posted by rdrtx1
Code:
 
sed '/Replace_Flag/r myfile' /pathto/test.file | sed '/Replace_Flag/d'

This works perfectly for what I am doing.

Thank you everyone for the suggestions! Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Multi line regex for search and replace

I have text file like below: a.txt Server=abc Run=1 Time=120.123 Tables=10 Sessions=16 Time=380.123 Version=1.1 Jobs=5 Server=abc Run=2 Time=160.123 Tables=15 Sessions=16 Time=400.258 Version=2.0 (1 Reply)
Discussion started by: sol_nov
1 Replies

2. Shell Programming and Scripting

Replacing lines matching a multi-line pattern (sed/perl/awk)

Dear Unix Forums, I am hoping you can help me with a pattern matching problem. What am I trying to do? I want to replace multiple lines of a text file (that match a multi-line pattern) with a single line of text. These patterns can span several lines and do not always have the same number of... (10 Replies)
Discussion started by: thefang
10 Replies

3. Shell Programming and Scripting

[sed] Replace one line with two lines

Literally cannot get this one, guys. Single line replacement is simple, but I am not understanding the correct syntax for including a new line feed into the substitution part. Here's what I got. (Cannot use perl) #!/bin/sh set -f #Start Perms export HOME=/home/test_user # End Perms... (6 Replies)
Discussion started by: Parallax
6 Replies

4. Shell Programming and Scripting

Replace a multi-line strings or numbers

Hi I have no experience in Unix so any help would be appreciated I have the flowing text 235543 123 45654 199 225 578 45654 199 225 I need to find this sequence from A file 45654 199 225 (22 Replies)
Discussion started by: khaled79
22 Replies

5. Shell Programming and Scripting

SED - insert space at the beginning of line and multi replace command

hi I am trying to use SED to replace the line matching a pattern using the command sed 'pattern c\ new line ' <file1 >file 2 I got two questions 1. how do I insert a blank space at the beginning of new line? 2. how do I use this command to execute multiple command using the -e... (5 Replies)
Discussion started by: piynik
5 Replies

6. Shell Programming and Scripting

sed to replace a line with 2 or more different lines in same file

i have something like this... cat filename.txt <complexType name="abc"> bklah vlah blah blha blha blah blha </complexType > <complexType name="def"> bklah vlah blah blha blha blah blha </complexType > . . .and so on.. its a very large file (11 Replies)
Discussion started by: vivek d r
11 Replies

7. Shell Programming and Scripting

Global search and replace multi line file

Hello I need to search for a mult-line strngs(with spaces in between and qoted) in a file1 and replace that text with Fixed string globally in file1. The strng to search for is in file2. The file is big with some 20K records. so speed and effciency is required file1: (where srch & rplc... (0 Replies)
Discussion started by: Hiano
0 Replies

8. Shell Programming and Scripting

Multi-Line Search and Replace

There appears to be several threads that touch on what I'm trying to do, but nothing quite generic enough. What I need to do is search through many (poorly coded) HTML files and make changes. The catch is that my search string may be on one line or may be on several lines. For example there... (5 Replies)
Discussion started by: bisbell
5 Replies

9. Shell Programming and Scripting

multi line multirecord find and replace

Hello I am looking to have a script that performs some tasks for find and replace and inserts a line as well. I have done some programming 10 years ago, so it is causing me a little grief. File consists of 2500 records. I will show you a sample consisting of two records below and what needs... (3 Replies)
Discussion started by: cdc01
3 Replies

10. Shell Programming and Scripting

Search and replace multi-line text in files

Hello I need to search for a mult-line text in a file exfile1 and replace that text with another text. The text to search for is in exfile2 and the replacement text is in exfile3. I work with kornshell under AIX and need to do this with a lot of files. (the file type is postscript and they need... (10 Replies)
Discussion started by: marz
10 Replies
Login or Register to Ask a Question