From 9d3f8109d7cee96b8d92ceb759f7064086816b25 Mon Sep 17 00:00:00 2001 From: Owen Voke Date: Wed, 29 May 2019 14:12:45 +0100 Subject: [PATCH] deluge-console: add page (#3058) --- pages/common/deluge-console.md | 36 ++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 pages/common/deluge-console.md diff --git a/pages/common/deluge-console.md b/pages/common/deluge-console.md new file mode 100644 index 0000000000..9cd7e5f18e --- /dev/null +++ b/pages/common/deluge-console.md @@ -0,0 +1,36 @@ +# deluge-console + +> An interactive BitTorrent client interface that uses curses. +> More information: . + +- Start the interactive console interface: + +`deluge-console` + +- Connect to a Deluge daemon instance: + +`connect {{hostname}}:{{port}}` + +- Add a torrent to the daemon: + +`add {{url|magnet|path/to/file}}` + +- Display information about all torrents: + +`info` + +- Display information about a specific torrent: + +`info {{torrent_id}}` + +- Pause a torrent: + +`pause {{torrent_id}}` + +- Resume a torrent: + +`resume {{torrent_id}}` + +- Remove a torrent from the daemon: + +`rm {{torrent_id}}`