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 and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
ssh script problem problem pcjandyala Shell Programming and Scripting 2 07-31-2008 04:27 PM
problem with dd command or maybe AFS problem Anta Shell Programming and Scripting 0 08-25-2006 11:10 AM
SSH Problem auth problem budrito UNIX for Advanced & Expert Users 1 03-17-2004 10:12 AM

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

Join Date: Aug 2008
Location: bangalore
Posts: 11
problem with sed

hi friends

i have a file "myfile" using sed i want to replace a whole word which have a p alphabet in starting

input file:
pbm 123 456
ram 234 567

outfile;pbm have p at starting so replaced by mishra
mishra 123 456
ram 234 567


plz plz help me.
  #2 (permalink)  
Old 08-28-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
  
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,652
Code:
sed 's/^p[^ ]*/mishra/' file
  #3 (permalink)  
Old 08-28-2008
praneshmishra08 praneshmishra08 is offline
Registered User
  
 

Join Date: Aug 2008
Location: bangalore
Posts: 11
thanks but if file is

input :
pbm prav 234
ram shyam 789

output: both p replaced by mishra
mishra mishra 234
ram shyam 789

please give me reply.

thanks always.
  #4 (permalink)  
Old 08-28-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
  
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,652
If the input is foo par should the second p* be substituted? Do you have more requirements up your sleeve?
  #5 (permalink)  
Old 08-28-2008
praneshmishra08 praneshmishra08 is offline
Registered User
  
 

Join Date: Aug 2008
Location: bangalore
Posts: 11
thanks for reply
actually i have to replace each and every word which is starting with p in each and every line of any list.
  #6 (permalink)  
Old 08-28-2008
era era is offline Forum Advisor  
Herder of Useless Cats (On Sabbatical)
  
 

Join Date: Mar 2008
Location: /there/is/only/bin/sh
Posts: 3,652
Code:
sed 's/\<p[^ ]*/mishra/g' file
If your sed doesn't understand \< to mean word boundary, it's a bit tricky. Perhaps something like

Code:
sed 's/\(^\| \)p[^ ]*/\1mishra/g' file
  #7 (permalink)  
Old 08-28-2008
praneshmishra08 praneshmishra08 is offline
Registered User
  
 

Join Date: Aug 2008
Location: bangalore
Posts: 11
vow, it's working.
thanks a lot.
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 08:03 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