View Single Post
Posts: 557 | Thanked: 370 times | Joined on Apr 2010
#40
Meh gave up on it. Programs too laggy, memory/cpu hog and keeps crashing the phone. Went back to wget and wrote a nice little script for rapidshare that goes through a list of files, downloads them and deletes each line as it goes (just went through a list of 100+ files with no issues). Anyone is interested in something that doesnt corrupt vfat, use any resources and is really fast loading.

File rget in /usr/bin
Code:
while [ -s $1 ]
do
file=`cat $1 | head -n 1`
wget --http-user=USERNAME --http-password=PASSWORD $file
sed 1d $1 > tmp.txt
mv tmp.txt $1
done
Replacing USERNAME/PASSWORD with their respective values. It is then a matter of making a txt file with the links and calling it:
rget file.txt

Edit: Probably need to make it executable first with:
chmod +x rget

(as root obv)
 

The Following User Says Thank You to IzzehO For This Useful Post: