I have a script file which i need to modify with another script to insert a text at 8th line.

String to insert : Project_Name=sowstest

in to a file called start

i tired to use awk and sed but my command is getting garbled please help me out

Thanks in advance

link|improve this question
feedback

3 Answers

sed -i '8i8 This is Line 8' FILE

inserts at line 8

8 This is Line 8

into file FILE

-i does the modification directly to file FILE, no output to stdout, as mentioned in the comments by glenn jackman.

link|improve this answer
1  
use sed -i to edit in-place – glenn jackman Jun 30 '11 at 22:04
Thanks, I included your advice. – user unknown Jul 1 '11 at 0:15
i got the error -i is invalid option – ashok Jul 5 '11 at 20:59
feedback

An ed answer

ed file << END
8i
Project_Name=sowstest
.
w
q
END
link|improve this answer
+1 just for the joy of seeing ed in action – Fredrik Jul 4 '11 at 19:57
feedback

the awk answer

awk -v n=8 -v s="Project_Name=sowstest" 'NR == n {print s} {print}' file > file.new
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.