append out on particular line number


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting append out on particular line number
# 1  
Old 06-15-2011
append out on particular line number

I want to append output of below command to a file name "final" mentioned on line number 9.

Code:

sed 's/peter/xyz/g' ttc >> final

# 2  
Old 06-15-2011
Quote:
Originally Posted by learnbash
I want to append output of below command to a file name "final" mentioned on line number 9.

Code:

sed 's/peter/xyz/g' ttc >> final


you requirement isn't clear. can you give us some example.
# 3  
Old 06-15-2011
Code:
awk '{if(NR==9) { print sub("peter","xyz",$0) } else { print $0 }}' ttc

# 4  
Old 06-15-2011
Quote:
Originally Posted by kumaran_5555
you requirement isn't clear. can you give us some example.


Lets suppose i have a file final that consist of 15 lines.

I want to append the output of below command on line 9 in above file which have name "final"

Code:
sed 's/peter/xyz/g' ttc

---------- Post updated at 02:52 AM ---------- Previous update was at 02:50 AM ----------

Quote:
Originally Posted by itkamaraj
Code:
awk '{if(NR==9) { print sub("peter","xyz",$0) } else { print $0 }}' ttc


Where is the filename "final", in which i want to append the output at line 9 in final file.

---------- Post updated at 03:04 AM ---------- Previous update was at 02:52 AM ----------

Dear sir,

is it clear to you or not now?
# 5  
Old 06-15-2011
Try this.

Code:
awk '{if(NR==9){system("sed 's/abc/ash/g' test.txt")}else {print}}' final.txt

what about lines after line number 9 ? you want them to printed or not ?
# 6  
Old 06-15-2011
Quote:
Originally Posted by kumaran_5555
Try this.

Code:
awk '{if(NR==9){system("sed 's/abc/ash/g' test.txt")}else {print}}' final.txt

what about lines after line number 9 ? you want them to printed or not ?
dear sir i dont want to print the line of final.txt, i want that whatever line which we get from sed need to insert under final.txt at line number 9 nothing else.
# 7  
Old 06-15-2011
Code:
 
output=`sed 's/peter/xyz/g' ttc`;awk -v out=$output '{ if (NR==9) { print $out} else { print $0}}' final.txt

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Remove new line starting with a numeric value and append it to the previous line

Hi, i have a file with multiple entries. After some tests with sed i managed to get the file output as follows: lsn=X-LINK-IN0,apc=661:0,state=avail,avail/links=1/1, 00,2110597,2094790,0,81,529,75649011,56435363, lsn=TM1ITP1-AM1ITP1-LS,apc=500:0,state=avail,avail/links=1/1,... (5 Replies)
Discussion started by: nms
5 Replies

2. Shell Programming and Scripting

Append by line number

i want to append line 1 of file1 to the beginning of line1 of file2 and keep existing txt i have tried this sed sed -n '1p' file1 >> file2 but that goes to line 2 example file1 looks like this jump file2 should look like this jump over i would to do this by line number as... (10 Replies)
Discussion started by: bob123
10 Replies

3. Shell Programming and Scripting

Need append sequence number

Hi, Need to add sequnce number to one of the csv file and please find below actual requirement. Input file ABC,500 XXQ,700 ADF,400, ART,200 Out put file should be 1,ABC,500 2,XXQ,700 3,ADF,400, 4,ART,200 (3 Replies)
Discussion started by: siva83
3 Replies

4. UNIX for Dummies Questions & Answers

How to remove fields space and append next line to previous line.?

awk 'BEGIN{FS = "Ç"} NR == 1 {p = $0; next} NF > 1 {print p; p = $0} NF <= 1 {p = (p " " $0)} END {print p}' input.txt > output.txt This is what the input data file looks like with broken lines Code: 29863 Ç890000000 Ç543209911 ÇCHNGOHG Ç000000001 Ç055 ... (4 Replies)
Discussion started by: cumeh1624
4 Replies

5. Shell Programming and Scripting

Write $line number into textfile and read from line number

Hello everyone, I don't really know anything about scripting, but I have to manage to make this script, out of necessity. #!/bin/bash while read -r line; do #I'm reading from a big wordlist instructions using $line done Is there a way to automatically write the $line number the script... (4 Replies)
Discussion started by: bobylapointe
4 Replies

6. UNIX for Dummies Questions & Answers

How to read contents of a file from a given line number upto line number again specified by user

Hello Everyone. I am trying to display contains of a file from a specific line to a specific line(let say, from line number 3 to line number 5). For this I got the shell script as shown below: if ; then if ; then tail +$1 $3 | head -n $2 else ... (5 Replies)
Discussion started by: grc
5 Replies

7. Shell Programming and Scripting

how to get the data from line number 1 to line number 100 of a file

Hi Everybody, I am trying to write a script that will get some perticuler data from a file and redirect to a file. My Question is, I have a Very huge file,In that file I have my required data is started from 25th line and it will ends in 100th line. I know the line numbers, I need to get all... (9 Replies)
Discussion started by: Anji
9 Replies

8. Shell Programming and Scripting

Joining lines in reverse. append line 1 to line 2.

Hi I have used many times the various methods to append two lines together in a file. This time I want to append the 1st line to the second and repeat for the complete file.... an example This is the file owns the big brown dog joe owns the small black dog jim What I want is ... (7 Replies)
Discussion started by: dwalley
7 Replies

9. Shell Programming and Scripting

Adding a columnfrom a specifit line number to a specific line number

Hi, I have a huge file & I want to add a specific text in column. But I want to add this text from a specific line number to a specific line number & another text in to another range of line numbers. To be more specific: lets say my file has 1000 lines & 4 Columns. I want to add text "Hello"... (2 Replies)
Discussion started by: Ezy
2 Replies

10. Shell Programming and Scripting

Appending line number to each line and getting total number of lines

Hello, I need help in appending the line number of each line to the file and also to get the total number of lines. Can somebody please help me. I have a file say: abc def ccc ddd ffff The output should be: Instance1=abc Instance2=def Instance3=ccc Instance4=ddd Instance5=ffff ... (2 Replies)
Discussion started by: chiru_h
2 Replies
Login or Register to Ask a Question