From 5cc475d786eb1c5fa20fa0807fe3413f158e500a Mon Sep 17 00:00:00 2001 From: Aleksandr Borzunov Date: Fri, 14 Jan 2022 02:58:35 +0300 Subject: [PATCH] Shorten readme commands --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e54b7a6..2f00702 100644 --- a/README.md +++ b/README.md @@ -86,34 +86,34 @@ If torrent files are provided as command line arguments, corresponding adding di 1. Start a daemon: - python3 torrent_cli.py start & + ./torrent_cli.py start & 2. *(optional)* Look at a list of files in a torrent you want to download: - python3 torrent_cli.py show ./examples/debian-11.2.0-amd64-netinst.iso.torrent + ./torrent_cli.py show ./examples/debian-11.2.0-amd64-netinst.iso.torrent 3. Specify a download directory and add the torrent to the daemon: - python3 torrent_cli.py add ./examples/debian-11.2.0-amd64-netinst.iso.torrent -d ./downloads + ./torrent_cli.py add ./examples/debian-11.2.0-amd64-netinst.iso.torrent -d ./downloads If the torrent contains more than one file, you can select which files you want to download using `--include` and `--exclude` options. For more information run: - python3 torrent_cli.py add --help + ./torrent_cli.py add --help 4. Watch torrent status: - watch python3 torrent_cli.py status + watch ./torrent_cli.py status Add `-v` to increase output verbosity. You also can add more torrents, pause, resume, and remove them. For more information run: - python3 torrent_cli.py --help + ./torrent_cli.py --help 5. To stop the daemon run: - python3 torrent_cli.py stop + ./torrent_cli.py stop The daemon will restore its state after restart.