ruget
v1.0.0
Published
Command line interface to fetch remote Rutorrent files
Downloads
26
Readme
ruget
Command line tool to interact with a remote ruTorrent server.
NOTE: Nearly all API calls used in this program were reverse engineered due to the lack of documentation for ruTorrent. Use of this program assumes you accept these risks.
Installation
Grab from NPM:
sudo npm install -g ruget
OR
git clone https://github.com/hash-bang/ruget.git
npm install
sudo ln -s $PWD/ruget /usr/bin/ruget
Then copy the .ruget.json file into your home directory.
Example uses
# Get help
ruget --help
# List all files on server
ruget -l
# List only files in the 'Seeding' tag matching 'Foo*'
ruget -l -t seeding Foo*
# Download files in the 'Seeding' tag matching 'Foo*' and change the tag to 'Downloaded'
ruget -t seeding -m 'Downloaded' Foo*
# Download all completed files
ruget -c
# List all files with a ratio of at least 10
ruget -r 10
# Download files matching 'Foo*' in size order
rtget -s size Foo*