I want to download all the pdf files at the web site
http://www.advancedlinuxprogramming.com/alp-folder
There are about 20 pdf files so I want to use wget to download them.
However, I do not figure out the correct way to do that.
I tried these but all failed:
$ wget -r -l1 --no-parent -A.pdf
http://www.advancedlinuxprogramming.com/alp-folder
$ wget -r --no-parent -A.pdf
http://www.advancedlinuxprogramming.com/alp-folder
$ wget --convert-links -r -A pdf
http://www.advancedlinuxprogramming.com/alp-folder/
$ wget --convert-links -r -A "*.pdf"
http://www.advancedlinuxprogramming.com/alp-folder/
$ wget --version
GNU Wget 1.9+cvs-stable (Red Hat modified)
Copyright (C) 2003 Free Software Foundation, Inc.
I use FC3 linux.