Need to grab URL and place between <A></A> Tags


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Need to grab URL and place between <A></A> Tags
# 1  
Old 12-18-2009
Need to grab URL and place between <A></A> Tags

my output looks like:
Code:
<A HREF="http://support.apple.com/kb/HT1629"> </A>
<A HREF="http://support.apple.com/kb/HT1200"> </A>
<A HREF="http://old.nabble.com/AFP-eating-up-CPU-td19976358.html"> </A>
<A HREF="http://jochsner.dyndns.org/scripts/NHR.html"> </A>
<A HREF="http://jochsner.dyndns.org/scripts/NHR.html"> </A>
<A HREF="http://go2xserve.com/"> </A>
<A HREF="http://go2xserve.com/"> </A>
<A HREF="http://www.afp548.com/article.php?story=MCXRedirector"> </A>
<A HREF="http://www.afp548.com/article.php?story=MCXRedirector"> </A>
<A HREF="http://rentzsch.com/macosx/fs_usageIntro"> </A>
<A HREF="http://support.apple.com/kb/HT2370"> </A>

I need to grab each URL from http until the ending double quotes and place it between the > and </A>


Example:
<A HREF="http://support.apple.com/kb/HT2370"> </A>

should become

<A HREF="http://support.apple.com/kb/HT2370">Apple Remote Desktop: Configuring remotely via command line (kickstart) </A>

Last edited by Scott; 12-18-2009 at 08:31 PM.. Reason: Added code tags
# 2  
Old 12-18-2009
So, you mean you want to insert the text in between there?
# 3  
Old 12-18-2009
woops, I meant I want the URL from the same line to be inserted there.. In my example it translated the link
# 4  
Old 12-18-2009
Code:
gawk '/<A HREF=/ {
 o=$0
 gsub(/<A HREF=\042|\042>.*/,"",o)
 link=o
 gsub(/> <\/A>/,">"link"</A>")
 print
}' file

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Reading URL using Mechanize and dump all the contents of the URL to a file

Hello, Am very new to perl , please help me here !! I need help in reading a URL from command line using PERL:: Mechanize and needs all the contents from the URL to get into a file. below is the script which i have written so far , #!/usr/bin/perl use LWP::UserAgent; use... (2 Replies)
Discussion started by: scott_cog
2 Replies

2. Shell Programming and Scripting

Grab the return value of df -H-m

Hi to everyone :) Quick question how do i grab the return value on the 5 position here : sgs@sibs:~$ df -H -m Sist.fichs 1M-blocos Used Available Use% Mounted on /dev/sda1 35542 18904 14833 57% / In this case the Use% value . I need to... (9 Replies)
Discussion started by: drd0spt
9 Replies

3. UNIX for Dummies Questions & Answers

Awk: print all URL addresses between iframe tags without repeating an already printed URL

Here is what I have so far: find . -name "*php*" -or -name "*htm*" | xargs grep -i iframe | awk -F'"' '/<iframe*/{gsub(/.\*iframe>/,"\"");print $2}' Here is an example content of a PHP or HTM(HTML) file: <iframe src="http://ADDRESS_1/?click=5BBB08\" width=1 height=1... (18 Replies)
Discussion started by: striker4o
18 Replies

4. Shell Programming and Scripting

Grab the data

Hello Honourable Members, I stuck into one issue, my server is migrating from UNIX to linux and ptree command does not work there. I was working with pstree command in linux and need some help regarding the same. suppose i have one line for example: ram (121)--- sita... (3 Replies)
Discussion started by: singhabm
3 Replies

5. Web Development

Regex to rewrite URL to another URL based on HTTP_HOST?

I am trying to find a way to test some code, but I need to rewrite a specific URL only from a specific HTTP_HOST The call goes out to http://SUB.DOMAIN.COM/showAssignment/7bde10b45efdd7a97629ef2fe01f7303/jsmodule/Nevow.Athena The ID in the middle is always random due to the cookie. I... (5 Replies)
Discussion started by: EXT3FSCK
5 Replies

6. Solaris

What is the best way to copy data from place to another place?

Dear Gurus, I need you to advice or suggestion about the best solution to copy data around 200-300G from serverA(location A) to serverB(location B). Normally, I will share folder and then copy but it takes too long time(about 2 days). Do you have any suggestion or which way should be... (9 Replies)
Discussion started by: unitipon
9 Replies

7. UNIX for Dummies Questions & Answers

ReDirecting a URL to another URL - Linux

Hello, I need to redirect an existing URL, how can i do that? There's a current web address to a GUI that I have to redirect to another webaddress. Does anyone know how to do this? This is on Unix boxes Linux. example: https://m45.testing.address.net/host.php make it so the... (3 Replies)
Discussion started by: SkySmart
3 Replies

8. Shell Programming and Scripting

url calling and parameter passing to url in script

Hi all, I need to write a unix script in which need to call a url. Then need to pass parameters to that url. please help. Regards, gander_ss (1 Reply)
Discussion started by: gander_ss
1 Replies

9. UNIX for Advanced & Expert Users

url calling and parameter passing to url in script

Hi all, I need to write a unix script in which need to call a url. Then need to pass parameters to that url. please help. Regards, gander_ss (1 Reply)
Discussion started by: gander_ss
1 Replies
Login or Register to Ask a Question