For those of you who use GNU/linux, *BSD, or have cygwin installed, here's a quick way to download all of the single-player maps from quaddicted.com. Put this code in a file (mines named quake-dl.sh):
then make the file executable; chmod +x quake-dl.sh, and run it; ./quake-dl.sh.
Have fun!
Code:
#!/bin/sh wget http://quaddicted.com/filebase/filebase_files.txt for i in `cat filebase_files.txt`; wget http://quaddicted.com/filebase/$i done
Have fun!

Comment