![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Rules & FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How to insert text in the middle of a file | kartikkumar84@g | UNIX for Dummies Questions & Answers | 6 | 05-10-2008 11:35 AM |
| add text in the middle of file | relle | Shell Programming and Scripting | 6 | 03-20-2008 04:58 AM |
| insert text in the middle of a file | relle | Shell Programming and Scripting | 3 | 03-13-2008 11:37 AM |
| How to insert text into first line of the file and middle of the file? | ali hussain | Shell Programming and Scripting | 3 | 03-05-2007 01:54 AM |
| insert text into the middle of a original file | mopimp | Shell Programming and Scripting | 1 | 03-26-2006 07:11 AM |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Script to add a single line to middle of text file.
I've got a configuration file that is filled with xml text statements for example:
<...../> <...../> <...../> <data id="java-options" value="-server -Djava.security.policy..../> <...../> <...../> <...../> I want to write a korn shell script that will go to this specific line and add a certain parameter as follows: <data id="java-options" value="-server -My_Parameter -Djava.security.policy..../> I'm thinking that I can do this with head and tail but I'm not sure how to do it. Any help help would be appreciated. |
| Forum Sponsor | ||
|
|
|
|||
|
head and tail cannot add any information on their own. For easy string replacements, you probably want sed.
Code:
sed -e '/<data /s/-server/& -My_Parameter/' file >file.new |
|
|||
|
Quote:
|
|||
| Google UNIX.COM |