home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / software / on-line / getallhtml / getallhtml_ex.script next >
Text File  |  1999-07-06  |  646b  |  19 lines

  1. Echo "This script will try to download many megabytes of pictures from Squid's artwork pages."
  2. Echo "Hopefully the URL http://flyingmice.com/squid/art/sitemap.html has not changed!"
  3. Echo "Use Ctrl-C/D to quit, or close the HTTPResume program."
  4. Echo ""
  5.  
  6. Set DOWNLOADDIR "Data:SquidArt"
  7.  
  8. IF NOT EXISTS Data:SquidArt
  9.     Echo "OOPS!  I need the (download) directory $DOWNLOADDIR unless you edit me..."
  10. ELSE
  11.     IF NOT EXISTS GetAllHTML.rexx
  12.         Echo "OOPS!  You must run this from the directory with GetAllHTML in."
  13.     ELSE
  14.         Sys:RexxC/Rx GetAllHTML.rexx "http://flyingmice.com/squid/art/sitemap.html" "$DOWNLOADDIR" PIC NOASK
  15.     ENDIF
  16. ENDIF
  17.  
  18. UnSet DOWNLOADDIR
  19.