It's not much, but I'm sure it will help someone. I searched if it exists and didn't find, so.
If u wanna upload via FTP all your files in one folder do this:
1. in text editor write code, use ftp server of your choice
2. save as with .sh extension
3. run like
or
Megaupload doesn't have FTP for free users, but there's tool called Plowshare. http://code.google.com/p/plowshare/
It's easy to use.
here's the script for mass upload to MU:
for rapidshare change "megaupload" to "rapidshare" or "filesonic" or whatever it supports.
you can change "zip" to whatever extension you're using or just put "*" for every file in folder. Just save it as .sh and run.
Of course you can put all in one file and add more FTP or plowup to upload to more filehosts.
I was doing this for rapidshare, megaupload, fileserve, filejungle, filesonic. Just run and relax.
If u wanna upload via FTP all your files in one folder do this:
1. in text editor write code, use ftp server of your choice
Code:
#!/bin/bash
ftp -inv << FTP
open ftp.eu.filesonic.com
user USERNAME PASSWORD
lcd /YOUR/FOLDER/WITH/FILES
mput *.zip
bye
FTP
3. run like
Code:
bash yourfile.sh
Code:
./yourfile.sh
It's easy to use.
here's the script for mass upload to MU:
Code:
#!/bin/bash
for file in /path/to/yourfiles/*.zip;
do
plowup --auth=username:password megaupload "${file}";
done;
you can change "zip" to whatever extension you're using or just put "*" for every file in folder. Just save it as .sh and run.
Of course you can put all in one file and add more FTP or plowup to upload to more filehosts.
I was doing this for rapidshare, megaupload, fileserve, filejungle, filesonic. Just run and relax.
Last edited: