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
insert text in the middle of a file relle Shell Programming and Scripting 3 03-13-2008 03:37 PM
How to insert the 1st arg into the middle of the file boris Shell Programming and Scripting 4 04-13-2007 12:21 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 05:54 AM
awk insert character in the middle of a line mmarino Shell Programming and Scripting 3 11-18-2005 12:00 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 10-08-2008
phenom phenom is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 3
How do I insert a line in the middle of a file in BASH?

I have tried

sed '/6/a text_to_inserted' file > newfile

but this inserts test_to_insert at random places in file and i want it in specific location, which is line 6.


can anyone help....
  #2 (permalink)  
Old 10-08-2008
danmero danmero is offline Forum Advisor  
  
 

Join Date: Nov 2007
Location: 45.48-73.63
Posts: 1,369
This solution will insert the new line between 5th and 6th line.
Code:
sed '6i\
This is the new line
' file
  #3 (permalink)  
Old 10-08-2008
a2156z a2156z is offline
Users Awaiting Email Confirmation
  
 

Join Date: Oct 2008
Posts: 30
/usr/bin/ex - "$targfile" << _EOF_ 1>/dev/null 2>&1
${linenum_below}i
$source
.
wq!
_EOF_
if [[ $? -ne 0 ]]; then
# add error log here
fi
  #4 (permalink)  
Old 10-08-2008
cfajohnson's Avatar
cfajohnson cfajohnson is online now Forum Advisor  
Shell programmer, author
  
 

Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,311
Quote:
Originally Posted by phenom View Post
I have tried

sed '/6/a text_to_inserted' file > newfile

but this inserts test_to_insert at random places in file and i want it in specific location, which is line 6.

/6/ is a regular expression which matches the digit, 6. If you want line 6, leave out the slashes.

Code:
sed '6a\
text_to_insert
'
  #5 (permalink)  
Old 10-09-2008
phenom phenom is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 3
I have a $(whoami) in the line to be inserted and

sed '6a\
text_to_insert
'

is not recognizing it. it inserts $(whoami) instead of the username
any ideas??
  #6 (permalink)  
Old 10-09-2008
cfajohnson's Avatar
cfajohnson cfajohnson is online now Forum Advisor  
Shell programmer, author
  
 

Join Date: Mar 2007
Location: Toronto, Canada
Posts: 2,311

Substitution and expansion is not performed within single quotes.
  #7 (permalink)  
Old 10-09-2008
phenom phenom is offline
Registered User
  
 

Join Date: Oct 2008
Posts: 3
Quote:
Originally Posted by cfajohnson View Post

Substitution and expansion is not performed within single quotes.
thanks johnson, much appreciate it
Sponsored Links
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 05:58 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
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