![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Replace field in csv | pcboss | Linux | 4 | 01-19-2008 06:24 PM |
| how to replace field for each record | happyv | Shell Programming and Scripting | 12 | 06-26-2007 08:56 AM |
| Replace password field using ed/sed | munch | UNIX for Dummies Questions & Answers | 6 | 05-01-2007 12:01 AM |
| find pattern and replace another field | sergiioo | Shell Programming and Scripting | 3 | 04-11-2007 01:19 AM |
| Find and Replace code help needed | E Orgill | UNIX for Dummies Questions & Answers | 2 | 08-24-2005 04:05 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
awk: find and replace in certain field only, help needed
I got a sample file like this.
$ cat test 12|13|100|s 12|13|100|s 100|13|100|s 12|13|100|s I want to replace all 100 by 2000 only in 3rd field using "awk" This is replacing all 100's :-( $ awk -F "|" '{gsub( /100/,"2000");print}' test 12|13|2000|s 12|13|2000|s 2000|13|2000|s 12|13|2000|s I tried using something like this also - '$3 ~ /100/ but no luck :-( Please help. HTH, jkl_jkl |
|
||||
|
Hi All,
Need a quick help on the similar issue...I am trying to replace the 87th column ina file with some other value but this command doesn't work for me. awk 'BEGIN{OFS=FS=";"}$87==10000019{$9=123456700}{print}' ab Can someone help please... |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|