![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
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 fixed strings only | askumarece | Shell Programming and Scripting | 9 | 06-18-2009 12:48 PM |
| Help with Find/Replace Javascript Injected Strings in mulitple files | zzlegs | Shell Programming and Scripting | 1 | 05-28-2009 07:29 PM |
| Help to replace character strings | rahulrathod | UNIX for Dummies Questions & Answers | 5 | 12-18-2008 05:26 AM |
| To replace string between two strings | amit1_x | Shell Programming and Scripting | 1 | 10-07-2008 06:02 AM |
| replace strings in a file | melanie_pfefer | Shell Programming and Scripting | 3 | 08-07-2008 06:55 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
AWK find/replace 2 strings in one shot
Friends,
I have a file with contents like: interface Serial0/4/0/0/1/1/1/1:0 encapsulation mfr multilink group 101 interface Serial0/4/0/0/1/1/1/2:0 encapsulation ppp multilink group 101 I just have to repace mfr with ppp and ppp with mfr in a single shot. I tried using this: awk '{gsub(/mfr/,"ppp");{gsub(/ppp/,"mfr")}}; 1' But this 1st replaces mfr with ppp and then ppp with mfr, so finally i get all mfr. Can somebody help me with this? Can we use SED? |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|