On Thu, 29 Jan 2009 09:30:22 -0500, Matt Dazzo <mda...@pch.com> 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 lists...@bama.ua.edu with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to