How to download multiple files from anywhere (including rapidshare) in Ubuntu Linux

this is an easy way to download multiple file (batch download) from anywhere including rapidshare with or without premium accounts using command line.

Create a file named “down.txt” and paste the rapidshare links there, one link per line.

Next create a bash file named “multidown” and paste the following in it, replacing the “YourUsername” and “YourPassword” with your data :

#!/bin/bash
for i in $(cat down.txt); do
wget   -nc  --user=YourUsername  --password=YourPassword "$i"
done

then alter permissions for this fileto make it executable

chmod u+x multidown

and run it

./multidown

or you can also put a launcher in your desktop ;)


~ by gourgi on 8 June 2008.

3 Responses to “How to download multiple files from anywhere (including rapidshare) in Ubuntu Linux”

  1. to arxeio prepei na to onomaseis down.txt

  2. Cool affair, didn’t thought this was going to be so amazing when I saw your url!

Leave a Reply