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
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 11-18-2005
mmarino mmarino is offline
Registered User
  
 

Join Date: Aug 2005
Posts: 7
awk insert character in the middle of a line

I'm trying to insert a single character at position 11 in everyline of a file.
My input file looks like this:
Code:
     456781 ~Y~12345
     456782 ~N~12300
and I want my output to look like this:
Code:
     45678~1 ~Y~12345
     45678~2 ~N~12300
I tried the following awk code, but it's not working:
Code:
cat myfile | awk 'print substr($1,1,10) "~" substr($1,11)}' > mynewfile
Any help would be appreciated!
  #2 (permalink)  
Old 11-18-2005
vino's Avatar
vino vino is offline Forum Staff  
Supporter (in vino veritas)
  
 

Join Date: Feb 2005
Location: Bangalore, India
Posts: 2,796
That change doesnt look like its at position 11. It looks like position 5.

I couldnt resist a sed solution for that

Code:
sh-2.05b$ echo "456781 ~Y~12345" | sed -e 's#\(.\{5\}\)\(.*\)#\1~\2#g'
45678~1 ~Y~12345
vino
  #3 (permalink)  
Old 11-18-2005
grasper grasper is offline
Registered User
  
 

Join Date: Sep 2005
Posts: 45
I think you just missed the opening brace before the 'print' statement - other than that it seems to work fine.
  #4 (permalink)  
Old 11-18-2005
mmarino mmarino is offline
Registered User
  
 

Join Date: Aug 2005
Posts: 7
Thanks vino and grasper! It is in position 11, the first 5 characters are spaces so it looks like it's in position 5.
The sed solutions looks a lot more complicated to me. I figured I had to use $0 instead of $1, and yes I was missing the open brace.
Thanks guys!

Monica
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 04:32 PM.


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