:-) If you really want to use wget on a windows box all you have to do is search for "unix tools for windows" and you will land up in the URL http://unxutils.sourceforge.net/
But my personal favorite is firefox browser with an add on called "download them all". This gives you ability to save off anything from a web page to a desired directory with capabilities like pause and resume. https://addons.mozilla.org/en-US/firefox/addon/201 Natarajan >>> John McKown <[email protected]> 1/29/2009 7:13 AM >>> On Thu, 29 Jan 2009 09:30:22 -0500, Matt Dazzo <[email protected]> wrote: >I found this site that has the z1.9 collection in PDF format, but they are all separate down loads. Is there a site where they all be down loaded with a single click? Thanks Matt > >http://publib.boulder.ibm.com/infocenter/zos/v1r9/index.jsp I don't know of one. However, I use Softcopy Librarian to download the manuals. Now, I know a lot, from experimentation, about how IBM has set this up. You can go to the site: http://publib.boulder.ibm.com/epubs/df/zosv1r9paz.des This is the control file which is used by Softcopy Librarian to download the PDF books. You will see a number of entries which start with: ELM_DIRECT_NAME="..." The information in this is the http address to place after http://publib.boulder.ibm.com to get the PDF. E.g ELM_DIRECT_NAME="/epubs/pdf/iea2g881.pdf" is stored at: http://publib.boulder.ibm.com/epubs/pdf/iea2g881.pdf Now, if only you had a Linux/UNIX system available, you could use wget with some simple scripting to do the download for you. Something like: wget http://publib.boulder.ibm.com/epubs/df/zosv1r9paz.des perl -p -e "if (m/\.pdf/) { s/ELM_DIRECT_NAME//; s/\"//g; print; }" zosv1r9paz.des | \ while read i;do wget http://publib.boulder.ibm.com$i;done #and bob's your uncle. No warranty expressed or implied. -- John ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html NOTICE OF CONFIDENTIALITY The information contained in this communication, including but not limited to any accompanying document(s) and/or attachment(s), is privileged and confidential and is intended solely for the above-named individual(s). If you are not the intended recipient, please be advised that any distribution, copying, disclosure, and/or use of the information contained herein is strictly prohibited. If you received this communication in error, please destroy all copies of the communication, whether in electronic or hard copy format, and immediately contact the Security Office at EDFUND at (916) 526-7539 or [email protected]. Thank you. ---------------------------------------------------------------------- For IBM-MAIN subscribe / signoff / archive access instructions, send email to [email protected] with the message: GET IBM-MAIN INFO Search the archives at http://bama.ua.edu/archives/ibm-main.html

