Posts Tagged ‘Rapidshare’

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