You are herelinux
linux
Installing Nmap 5.0 on Ubuntu Jaunty (9.04)
As of this post the current version of nmap in the ubuntu repositories is 4.76. Here are the steps I used to install the new version 5.0 on Ubuntu Jaunty 9.04.
To run go to Applications > Internet > Zenmap (as root).
Grabbing all the PDF files from a website
I found a website (not listed) below that had the whole service manual for my car at no charge (normally about $300 US). The site gave me 74 links to PDF files! As excited as I was, I wasn't in the mood to click on 74 links. So I googled around and found the following one-liner.
wget `lynx -dump URL | grep .pdf$ | sed 's/[[:blank:]]\+[[:digit:]]\+\. //g'`
where URL is the URL where all the PDF files are.
11 seconds later I had all 74 PDF files. Cheers!