david grant wrote: > > I intend to subscribe to Safari Books Online and would like to know > how to specify the fetching of the following pages: > http://safari.oreilly.com/main.asp?bookname=nettroubletools&mode=1 > where thevalue1 is replaced by successive higher values to reflect the > chapters and sub-sections.
#!/bin/bash i=1 while [ $i -le 1000 ] do wwwoffle "http://safari.oreilly.com/main.asp?bookname=nettroubletools&mode="$i let i=i+1 done Ciao, Magnum -- begin http://www.informatik.uni-muenchen.de/~_rosenbau/
