Mobile app version of vmapp.org
Login or Join
Annie201

: How to get an overview of external links on a website in the shell? I want to get an overview of external links on my websites. Ideally I want to control everything myself with open source

@Annie201

Posted in: #Links

I want to get an overview of external links on my websites. Ideally I want to control everything myself with open source tools I can run from my own laptop or server. I started playing around with some shell commands but I'm hoping there's something out there that works already. If not I'm happy to extend my shell script (and publish it on GitHub). Here are some lines...

D=example.com
wget -mk $D
grep href -are $D


Anything out there that already does what I want? Or something I can easily patch together?

Ideally I also want the anchor text and info whether the link is nofollow or not.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Annie201

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cugini213

If you have Lynx installed this is super easy to do with lynx -dump -listonly example.com/somepage.html

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme