Execution problems with sed


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Execution problems with sed
# 8  
Old 04-08-2012
thks,the how can u replace pattern with same www.cuk159.com

---------- Post updated at 10:00 PM ---------- Previous update was at 09:56 PM ----------

thanks my situation is the url are distributed on paragraph everywhere.then how to substitute
"http://xxxx/xxx/xx/x/2.img"
"http://xxxxx/xxxx/xxx/xx/x/2.img"
to the same url "http://www.cuk159.com/2.img"
# 9  
Old 04-08-2012
Quote:
Originally Posted by hshzh359
thks,the how can u replace pattern with same www.cuk159.com

---------- Post updated at 10:00 PM ---------- Previous update was at 09:56 PM ----------

thanks my situation is the url are distributed on paragraph everywhere.then how to substitute
"http://xxxx/xxx/xx/x/2.img"
"http://xxxxx/xxxx/xxx/xx/x/2.img"
to the same url "http://www.cuk159.com/2.img"
The solutions have already offered!
# 10  
Old 04-08-2012
ur solutions:sed 's#[^http://].*/#www.cuk159.com/#g'
but cannot work on my file.
"<TD height=64><IMG border=0 src=""http://images.ckk.tim159.com/imgextra/i4/data/T2Lc9wXe8XXXXXXXXX_!!36598895.gif"" width=740 height=64></TD></TR>"
ur method will replace other "/ " tags
# 11  
Old 04-08-2012
Code:
sed 's#http[^>]*/#http://www.cuk159.com/#g' infile

# 12  
Old 04-08-2012
thank u!!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Execution problems

How to find a word in a directory which contains many files? i just want to count how many such words are present in all the files? This is the code which i tried for a single file echo "Enter the file name:" read file echo "Enter the word to search:" read word if then echo "The count... (4 Replies)
Discussion started by: Meeran Rizvi
4 Replies

2. HP-UX

Execution problems with swreg

HP UX 10.20 I have a directory "/var/spool/sw" which is supposed to be a "Depot" directory. Turns out it is not and when using the swreg command "swreg -l /var/spool/sw" I get errors in part ERROR for option "-l /var/spool/sw" keyword or it's value may be incorrect or the keyword does not apply... (3 Replies)
Discussion started by: Randydog
3 Replies

3. UNIX for Dummies Questions & Answers

Execution Problems with Cron

Good evening, ive got this cron to be run: if i run this manually it doesnt work,it takes me to the prompt again /export/app/CO/opge/scr/Informe_parametros_colombia.ksh >/dev/null 2>&1 here is the code fragment: coopge@coopge: opge PRODUCCION>more... (1 Reply)
Discussion started by: alexcol
1 Replies

4. Shell Programming and Scripting

Execution Problems

this my source file ************* fixed *************** Begin equipmentId : d9 processor : fox number : bhhhhhh Variable # 1: Id : 100 Type : 9 nType : s gType : 5f mType : 4 LField : England DataField : london Length ... (6 Replies)
Discussion started by: teefa
6 Replies

5. UNIX for Dummies Questions & Answers

Execution Problems with Cron

Hi friends, today i created a cron job , registered the crontab file associated but dont know why the cron is not getting executed at the right time.?? content of Crontab file : 21 15 * * * /subrat/myt i wanted to execute the script myt on 15:21 PM of everyday. the script myt... (2 Replies)
Discussion started by: paras.oriental
2 Replies

6. Homework & Coursework Questions

Execution Problems with sed

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: Okay so I am taking bash scripting this semester and we are now working on the stream editor sed. For our book we... (4 Replies)
Discussion started by: aggie6970
4 Replies

7. Shell Programming and Scripting

Execution Problems!!

i have been working on this for a about 12 hours today say's end of file un expected any idea's using the bourne shell and its driving me nuts worked fine in bash but prof says make it work in bourne and good luck worth 13% any help would be awesome #!/bin/sh trap "rm mnt2/source/tmp/* 2>... (1 Reply)
Discussion started by: mrhiab
1 Replies

8. UNIX and Linux Applications

Execution Problems with Cron

Hi all!! I have a nerve-wracking concept (probably for me!!) which is not understood. My crontab entry looks this way. 33 09 22 3 * /home/myexp.sh "Bgp4 ALL" >/dev/null 2>&1 But cron gets started occasionally. Sometimes it does. Sometimes it does not. And sometimes it hangs in the middle (I... (1 Reply)
Discussion started by: dhivyasuresh
1 Replies

9. Programming

execution problems with cron

how to store a date into file? and how we can access date from the file? ---------- Post updated at 06:09 AM ---------- Previous update was at 06:08 AM ---------- how we can store date in file? (1 Reply)
Discussion started by: causalmodi777
1 Replies

10. Shell Programming and Scripting

execution problems with curl

I have been getting error "curl: (7) Failed to connect to IP number 1" when using the CURL command Could someone help??? (1 Reply)
Discussion started by: infernalhell
1 Replies
Login or Register to Ask a Question