If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > Unix Shell Scripts > HI problem with find and replace

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-14-04, 16:54
joalpeca1 joalpeca1 is offline
Registered User
 
Join Date: Mar 2004
Posts: 3
HI problem with find and replace

Hi my name is Jose

I need help in find and replace with linux
I have the nex code :

find . -name '*.shtml' -exec perl -p -i -e 's/7jdu2msjd69395s-->/7jdu2msjd69395stttxxxppp333444-->/i' '{}' \;

but when i want to put this

find . -name '*.shtml' -exec perl -p -i -e 's/ObjectList: 7jdu2msjd69395s-->/ObjectList: 7jdu2msjd69395stttxxxppp333444-->/i' '{}' \;

this code no find anything if some one knows how i can do this i will be very greatfull
Reply With Quote
  #2 (permalink)  
Old 04-14-04, 16:55
joalpeca1 joalpeca1 is offline
Registered User
 
Join Date: Mar 2004
Posts: 3
Re: HI problem with find and replace

Quote:
Originally posted by joalpeca1
Hi my name is Jose

I need help in find and replace with linux
I have the next code :

find . -name '*.shtml' -exec perl -p -i -e 's/7jdu2msjd69395s-->/7jdu2msjd69395stttxxxppp333444-->/i' '{}' \;

but when i want to put this

find . -name '*.shtml' -exec perl -p -i -e 's/ObjectList: 7jdu2msjd69395s-->/ObjectList: 7jdu2msjd69395stttxxxppp333444-->/i' '{}' \;

this code no find anything if some one knows how i can do this i will be very greatfull
Reply With Quote
  #3 (permalink)  
Old 04-15-04, 05:48
aigles aigles is offline
Registered User
 
Join Date: Jan 2004
Location: Bordeaux, France
Posts: 319
Are you sure that there is just a space between 'ObjectList:' and '7jdu' ?
Try this :

find . -name '*.shtml' -exec perl -p -i -e 's/ObjectList:[[:space:]]+7jdu2msjd69395s-->/ObjectList: 7jdu2msjd69395stttxxxppp333444-->/i' '{}' \;
__________________
Jean-Pierre.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On