web-dev-qa-db-ja.com

ダウンロードを開始/停止するコマンドライン引数を持つトレントクライアントはどれですか?

まず、トレントクライアントでダウンロードを開始/停止するシェルスクリプトを作成します。 CLIは必要ありませんが、シェルスクリプトを使用してCLIでそれを行う方法を知っている場合は、問題ありません。

GUIベースのアプリケーションであるjDownloaderを使用しますが、ダウンロードの開始/停止に使用する以下のコマンドライン引数があります。

-h/--help       Show this help message
-a/--add-link(s)    Add links
-co/--add-container(s)  Add containers
-d/--start-download Start download
-D/--stop-download  Stop download
-H/--hide       Don't open Linkgrabber when adding Links
-m/--minimize       Minimize download window
-f/--focus      Get jD to foreground/focus
-s/--show       Show JAC prepared captchas
-t/--train      Train a JAC method
-r/--reconnect      Perform a Reconnect
-C/--captcha <filepath or url> <method> Get code from image using JAntiCaptcha
-p/--add-password(s)    Add passwords
-n --new-instance   Force new instance if another jD is running

したがって、次のようにダウンロードを簡単に開始/停止できます。

jdownloader --start-download
jdownloader --stop-download

今、私は急流クライアントがシェルスクリプトを通してそれをすることを望みます。

5
Rahul Virpara

Flush を使用して、ターミナルから実行中のインスタンスのトレントダウンロードを開始または停止します。

これらのオプションはフラッシュで使用できます。

  --start={all,downloads,uploads}     Start torrents  
  --stop={all,downloads,uploads}      Stop torrents

他のトレントクライアントのコマンドラインオプション

1。 Delugeにはほとんどオプションがありません

Usage: deluge-gtk [options]

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit

  Common Options:
    -c CONFIG, --config=CONFIG
                        Set the config folder location
    -l LOGFILE, --logfile=LOGFILE
                        Output to designated logfile instead of stdout
    -L LOGLEVEL, --loglevel=LOGLEVEL
                        Set the log level: none, info, warning, error,
                        critical, debug
    -q, --quiet         Sets the log level to 'none', this is the same as `-L
                        none`

2。 Transmissionの場合

Usage:
  transmission-gtk [OPTION...] [torrent files or urls]

Help Options:
  -h, --help               Show help options
  --help-all               Show all help options
  --help-gtk               Show GTK+ Options

GTK+ Options
  --class=CLASS            Program class as used by the window manager
  --name=NAME              Program name as used by the window manager
  --screen=SCREEN          X screen to use
  --sync                   Make X calls synchronous
  --gtk-module=MODULES     Load additional GTK+ modules
  --g-fatal-warnings       Make all warnings fatal

Application Options:
  -p, --paused             Start with all torrents paused
  --version                Show version number and exit
  -m, --minimized          Start minimized in notification area
  -g, --config-dir         Where to look for configuration files
  --display=DISPLAY        X display to use

3。 qbittorrent options

Usage:
    qbittorrent --version: displays program version
    qbittorrent --no-splash: disable splash screen
    qbittorrent --help: displays this help message
    qbittorrent --webui-port=x: changes the webui port (current: 8080)
    qbittorrent [files or urls]: downloads the torrents passed by the user (optional)
4
Rahul Virpara

rtorrent、deluge、transmissionにはすべて、コマンドラインから操作できるネイティブLinuxトレントクライアントがあります。

4
keito

uTorrentにはその機能があります

詳細情報を得るのに役立つリソースをいくつか紹介します。

https://forum.uTorrent.com/viewtopic.php?id=53988

http://www.uTorrent.com/downloads/linux

3
Kevin

transmission-gtkには「-p」オプションがあり、すべてのトレントを一時停止してクライアントを起動します。オプションを指定しないと、すべてのトレントがダウンロードされた状態でクライアントが起動します。

0
jasmines

rTorrent:

0
pyroscope