Here is how to use aria2c (Linux or MacPorts for OSX) to download stuff from put.io
aria2c -x5 --http-user=YOURUSERNAME --http-passwd=YOURPASSWORD --dir=DestinationDir -ctrue URL
eg:
aria2c -x5 --http-user=user --http-passwd=pass --dir=/Volumes/Users/user/Downloads -ctrue http://put.io/download-file/123123/123123
Quick explanation of options:
x5 : use 5 simultaneous connections to download this file
http-user / http-password : you put.io credentials
dir : The place where you want the file downloaded on your
system
For convenience, dump this as a function in your .bash_profile:
function put(){
aria2c -x5 --http-user=**YOURUSERNAME** --http-passwd=**YOURPASSWORD** --dir=**DestinationDir** -ctrue $1
}
This would allow you to download stuff from put.io from terminal
as follows:
put URL
Comments are currently closed for this discussion. You can start a new one.
2 Posted by ajorpheus on 05 Jun, 2011 01:05 PM
It's even easier if you do this, by creating this file:
$HOME/.aria2/aria2.conf
with the following contents (Also attached):
With such a file you can download stuff from put.io with a simple :
aria2c URL from the terminal. No messing around with .bash_profile required.
3 Posted by tunix on 05 Jun, 2011 07:51 PM
Hello ajorpheus,
Thanks for sharing your knowledge with other users! It's really great for us
to see such contributions! :)
---
Quis custodiet ipsos custodes?
4 Posted by ajorpheus on 06 Jun, 2011 08:47 AM
Hi Tunix,
The pleasure is mine .. I LOVE put.io ... I think it's the best thing since sliced bread ! :)
hasan closed this discussion on 26 Jul, 2011 09:26 AM.