Does anyone know of a program or browser extension that will copy ALL internal and external links from an entire website (not just a single page)? If I can't find one I am thing of making a custom script, what language would I use for this? Thanks
You can use softwares like offline explorer to download the contents.. But I don't know if there's an option for the links only..
I use tagsoup for these sorts of tasks. Here's an example of how to get all the links from html page using rubyful soup: soup = BeautifulSoup.new(html_input) links = soup.find_all('a') p links