The UNIX and Linux Forums  

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 here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Adding columns to a file figaro UNIX for Dummies Questions & Answers 5 4 Weeks Ago 10:50 PM
add columns from file to another and sort kamel.seg Shell Programming and Scripting 12 12-12-2007 10:39 AM
have a file with 300 columns dummy_needhelp Shell Programming and Scripting 4 11-04-2007 09:08 PM
manipulate csv file to add columns oscarmon Filesystems, Disks and Memory 6 12-11-2006 05:47 AM
Appending columns on a file abel Shell Programming and Scripting 2 09-27-2002 04:04 AM

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-22-2007
Registered User
 

Join Date: Mar 2007
Posts: 30
How can i replace certain columns in the file

Can i use sed command to replace certain column in the file

let say i hav

D1254215221542 MANA3DS2OOR454
C1254815221121 MDGA4GH4OOR454
A1254215221522 AFFA4DF4OODS54
S3454815221121 TDTA4GH465R454

I wanted to change only at postition 21 and 22 which is DS,GH,DF and GH
i want find that if that position is GH then change it to KH
so the output should be

D1254215221542 MANA3DS2OOR454
C1254815221121 MDGA4KH4OOR454
A1254215221522 AFFA4DF4OODS54
S3454815221121 TDTA4KH465R454

can i do in in sed command or any other simple command if you have
thanks
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 06-22-2007
aigles's Avatar
Registered User
 

Join Date: Apr 2004
Location: Bordeaux, France
Posts: 1,158
You can do something like that :
Code:
sed 's/^\(.\{20\}\)GH/\1KH/'  infile
Reply With Quote
  #3 (permalink)  
Old 06-22-2007
Technorati Master
 

Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,448
Round about way!
Code:
awk '{ if( substr($0, 21, 2) ~ /GH/ ) { printf "%s%s%s\n", substr($0, 0, 20), "KH", substr($0, 23, length($0)) } else { print } }'  filename
Reply With Quote
  #4 (permalink)  
Old 06-22-2007
Registered User
 

Join Date: Mar 2007
Posts: 30
Thanks man
i will trying it out
it should work
thanks again
Reply With Quote
  #5 (permalink)  
Old 06-22-2007
Registered User
 

Join Date: Sep 2006
Posts: 1,423
Code:
awk 'BEGIN{FS="";OFS=""}
     $21~"G" && $22 ~ "H"{ $21="K";}
	 {print }
' "file1"
Reply With Quote
  #6 (permalink)  
Old 06-22-2007
aigles's Avatar
Registered User
 

Join Date: Apr 2004
Location: Bordeaux, France
Posts: 1,158
Quote:
Originally Posted by ghostdog74 View Post
Code:
awk 'BEGIN{FS="";OFS=""}
     $21~"G" && $22 ~ "H"{ $21="K";}
	 {print }
' "file1"
This solution doesn't work with my version of awk under AIX. With an empty Input File Separator, the field 1 contains the whole record :
Code:
$ awk 'BEGIN{FS="";OFS=""}
>      { printf("$0=<%s>\n$1=<%s>\n", $0, $1) }
> ' rep.txt
$0=<D1254215221542 MANA3DS2OOR454>
$1=<D1254215221542 MANA3DS2OOR454>
$0=<C1254815221121 MDGA4GH4OOR454>
$1=<C1254815221121 MDGA4GH4OOR454>
$0=<A1254215221522 AFFA4DF4OODS54>
$1=<A1254215221522 AFFA4DF4OODS54>
$0=<S3454815221121 TDTA4GH465R454>
$1=<S3454815221121 TDTA4GH465R454>
$
Reply With Quote
  #7 (permalink)  
Old 06-22-2007
Registered User
 

Join Date: Sep 2006
Posts: 1,423
I use GNU awk. Defining FS="" will set every character as individual fields.
output:
Code:
# ./test.sh
D1254215221542 MANA3DS2OOR454
C1254815221121 MDGA4KH4OOR454
A1254215221522 AFFA4DF4OODS54
S3454815221121 TDTA4KH465R454
Reply With Quote
Google UNIX.COM
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 04:17 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008 The CEP Blog All Rights Reserved -Ad Management by RedTyger Visit The Global Fact Book

Content Relevant URLs by vBSEO 3.2.0