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

Posted: 8 June 2008 in English, Ubuntu
Tags: , ,

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 ;)

Comments
  1. Anonymous says:

    to arxeio prepei na to onomaseis down.txt

  2. Vinigrivy says:

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

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.