Add a line to a file


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Add a line to a file
# 1  
Old 11-02-2009
Add a line to a file

Hi
I want to search for a string and add a new line after that line in the file.
Say I have a file

Input file
adfad
aadfsdfsa
adfadsf
<name>TypeOptions</name>
adfdasf
adfad
adfad


outputfile
adfad
aadfsdfsa
adfadsf
<name>TypeOptions</name>
<option xsi:type="metadata:Option" value="300"></option>
adfdasf
adfad
adfad

Can you please help me with this ?

Thanks and Regards
Ammu
# 2  
Old 11-02-2009
next time, show what you have got. After 70++ posts, you should have more experience already
see here for similar example
# 3  
Old 11-02-2009
Hi,

Code:
# more infile
adfad
aadfsdfsa
adfadsf
<name>TypeOptions</name>
adfdasf
adfad
adfad
# more lineadd.sh
#!/bin/sh
echo "Enter the pattern to search ?"
read pattern
echo "Enter the line to add ?"
read line_add
while read line
do
ch1=`echo $line|grep $pattern|wc -l`
if [ $ch1 -ne 1 ]
then
        echo $line >> outfile
else
        echo $line >> outfile
        echo $line_add >> outfile
fi
done < infile
# ./lineadd.sh
Enter the pattern to search ?
name
Enter the line to add ?
found the pattern "name"
# more outfile
adfad
aadfsdfsa
adfadsf
<name>TypeOptions</name>
found the pattern "name"
adfdasf
adfad
adfad

# 4  
Old 11-02-2009
code:-

Code:
sed  '/<name>/ { a\
<option xsi:type="metadata:Option" value="300"></option>
}' file.txt > out_file

Best Regards
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Replace and add line in file with line in another file based on matching string

Hi, I want to achieve something similar to what described in another post: The difference is I want to add the line if the pattern is not found. File 1: A123, valueA, valueB B234, valueA, valueB C345, valueA, valueB D456, valueA, valueB E567, valueA, valueB F678, valueA, valueB ... (11 Replies)
Discussion started by: jyu3
11 Replies

2. Shell Programming and Scripting

create txt file form data file and add some line on it

Hi Guys, I have file A.txt File A Data AK1521 AK2536 AK3164 I want create text file of all data above and write some data on each file. want Output on below folder /home/kka/out AK1521.txt Hi Welocme (3 Replies)
Discussion started by: asavaliya
3 Replies

3. Shell Programming and Scripting

Modify a file by another file: add new line and variable after string is found

hello, I have problem with writing/adjusting a shell script. I searched forum and unfortunately couldn't write scipt based on the information I found. I never wtire such so it's hard for me and I do need to modify one script immediately. case looks like: 1. 'file' that needs to be modified... (3 Replies)
Discussion started by: bipbip
3 Replies

4. Shell Programming and Scripting

Add line break for each line in a file

I cannot seem to get this to work.. I have a file which has about 100 lines, and there is no end of line (line break \n) at the end of each line, and this is causing problem when i paste them into an application. the file looks like this this is a test that is a test balblblablblhblbha... (1 Reply)
Discussion started by: fedora
1 Replies

5. Shell Programming and Scripting

Read file and for each line replace two variables, add strings and save output in another file

Hi All, I have a file, let's call it "info.tmp" that contains data like this .. ABC123456 PCX333445 BCD789833 I need to read "info.tmp" and for each line add strings in a way that the final output is put /logs/ua/dummy.trigger 'AAA00001.FTP.XXX.BLA03A01.xxxxxx(+1)' where XXX... (5 Replies)
Discussion started by: Andy_ARG
5 Replies

6. Linux

Add file's date at beginning of every line in file

How would I do that? /Rutger (6 Replies)
Discussion started by: rutgerblom
6 Replies

7. Shell Programming and Scripting

howto add line as a first line into a non empty file

Hi Trying to do like this : echo "$variable1\n $(cat file.txt)" but it only adds one time. When I run this cmd again with different variable it only replaces line of variable1. How to add constantly line into first line in file ? (3 Replies)
Discussion started by: presul
3 Replies

8. Shell Programming and Scripting

Add new parameters into a line, and redirect the line to other file

How can i add new parameters into a line, and redirect the line to other file? For example: 1.sh name:owner google:richard youtube:student I want a, for example 2.sh with: name:owner:description google:richard:search site youtube:student:video site In the 2.sh, I added a new column:... (7 Replies)
Discussion started by: rafazz
7 Replies

9. Shell Programming and Scripting

How to add a new line into a file

I want to insert a new line character inside the file between these two record entries "san" and "man". How can this be done echo " san " >"C:/\Test/\Output/\Neme" echo " man " >>"C:/\Test/\Output/\Name" Name file should look like this san man Please help (4 Replies)
Discussion started by: sandeep_hi
4 Replies

10. Shell Programming and Scripting

Add a line to a file.

Hi I need to add a line to several files. But this line can only be added if it has an 'a' or 'A' in its current first line and only for the first line of each file. I tried sed, but i cant figure how to make it change just the first line. It just changes me all lines with an a. Can you give... (2 Replies)
Discussion started by: Scarlos
2 Replies
Login or Register to Ask a Question