2003-07-06 15:01:13 +00:00
|
|
|
#!/bin/sh
|
2004-02-01 20:03:26 +00:00
|
|
|
##
|
|
|
|
## Copyright (C) 2004, 2003 Marcelo E. Magallon <mmagallo[at]debian org>
|
|
|
|
## Copyright (C) 2004, 2003 Milan Ikits <milan ikits[at]ieee org>
|
|
|
|
##
|
|
|
|
## This program is distributed under the terms and conditions of the GNU
|
|
|
|
## General Public License Version 2 as published by the Free Software
|
|
|
|
## Foundation or, at your option, any later version.
|
2003-07-06 15:01:13 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
if [ ! -d $1 ] ; then
|
|
|
|
mkdir $1
|
|
|
|
fi
|
2003-07-07 11:29:51 +00:00
|
|
|
cd $1
|
2003-07-06 15:01:13 +00:00
|
|
|
|
|
|
|
wget \
|
|
|
|
--mirror \
|
|
|
|
--no-parent \
|
|
|
|
--no-host-directories \
|
|
|
|
--cut-dirs=3 \
|
|
|
|
--accept=txt,html \
|
2003-09-15 15:35:32 +00:00
|
|
|
$2
|
2003-07-06 15:01:13 +00:00
|
|
|
|