mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-04 12:35:34 +02:00
transmission-remote: add page (#2982)
This commit is contained in:
parent
ffd4aca8c5
commit
8a5ab266a2
1 changed files with 31 additions and 0 deletions
31
pages/common/transmission-remote.md
Normal file
31
pages/common/transmission-remote.md
Normal file
|
@ -0,0 +1,31 @@
|
|||
# transmission-remote
|
||||
|
||||
> Remote control utility for transmission-daemon and transmission.
|
||||
|
||||
- Add a torrent file or magnet link to Transmission and download to a specified directory:
|
||||
|
||||
`transmission-remote {{hostname}} -a {{torrent|url}} -w {{path/to/download_directory}}`
|
||||
|
||||
- Change the default download directory:
|
||||
|
||||
`transmission-remote {{hostname}} -w {{path/to/download_directory}}`
|
||||
|
||||
- List all torrents:
|
||||
|
||||
`transmission-remote {{hostname}} --list`
|
||||
|
||||
- Start torrent 1 and 2, stop torrent 3:
|
||||
|
||||
`transmission-remote {{hostname}} -t {{"1,2"}} --start -t {{3}} --stop`
|
||||
|
||||
- Remove torrent 1 and 2, and also delete local data for torrent 2:
|
||||
|
||||
`transmission-remote {{hostname}} -t {{1}} --remove -t {{2}} --remove-and-delete`
|
||||
|
||||
- Stop all torrents:
|
||||
|
||||
`transmission-remote {{hostname}} -t {{all}} --stop`
|
||||
|
||||
- Move torrents 1-10 and 15-20 to a new folder (folder will be created if it does not exist):
|
||||
|
||||
`transmission-remote {{hostname}} -t {{"1-10,15-20"}} --move {{path/to/new_directory}}`
|
Loading…
Add table
Reference in a new issue