> It looks like it doesn't exist right now. Why don't you just download > all the FAQ pages? > for i in 1 2 3 4 5 6 7 8 9; do > ftp http://openbsd.org/faq/faq0${i}.html > done > for i in 10 11 12 13 14 15; do > ftp http://openbsd.org/faq/faq${i}.html > done Wouldn't it be simpler to be done in one loop?
for i in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15; do ftp http://openbsd.org/faq/faq${i}.html done ftp http://openbsd.org/faq/index.html But I'm just thinking about tools like wget or curl?! Though they are AFAIK not in the base-system. BTW: Cc-ing to the list messes up some MUAs reply-to-list functionality. Thank you for not doing this anymore. --Julian -- Fortune of the hour: To be or not to be. -- Shakespeare To do is to be. -- Nietzsche To be is to do. -- Sartre Do be do be do. -- Sinatra