The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
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 02:35 PM
add text in the middle of file relle Shell Programming and Scripting 6 03-20-2008 08:58 AM
insert text in the middle of a file relle Shell Programming and Scripting 3 03-13-2008 03:37 PM
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 05:54 AM
insert text into the middle of a original file mopimp Shell Programming and Scripting 1 03-26-2006 10:11 AM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish Powered by Powered by Google
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 05-12-2008
progkcp progkcp is offline
Registered User
  
 

Join Date: Feb 2008
Posts: 11
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.
  #2 (permalink)  
Old 05-12-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
  
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,652
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
This will search for "<data" and perform a substitution ("s") of "-server" with "-server -MyParameter" (the & is magical and means "whatever we are substituting") on that line. Other lines are printed unchanged.
  #3 (permalink)  
Old 05-12-2008
progkcp progkcp is offline
Registered User
  
 

Join Date: Feb 2008
Posts: 11
Quote:
Originally Posted by era View Post
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
This will search for "<data" and perform a substitution ("s") of "-server" with "-server -MyParameter" (the & is magical and means "whatever we are substituting") on that line. Other lines are printed unchanged.
This works perfectly, thank you!
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT -4. The time now is 08:46 AM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language Translations Powered by .
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0