完了したダウンロードをaria2cのディレクトリに配置するには?

完了したダウンロードをaria2cのディレクトリに配置するには?
alias download='while true; do timeout -s 9 1260 aria2c *.torrent --lowest-speed-limit=1024 --disable-ipv6=true --seed-time=0 --max-connection-per-server=6 --enable-rpc=false; sleep 1; done'
alias seed='aria2c --check-integrity=false --bt-seed-unverified=true --lowest-speed-limit=1024 --disable-ipv6=true --max-connection-per-server=6 -d . *.torrent --seed-time=999999 --seed-ratio=999999.0'

だから私はaria2からこれらのエイリアスを使用して急流ファイルをダウンロードします。質問は1つだけです。完了したダウンロードをディレクトリに入れるには? (「ダウンロード」エイリアスを使用)

ps:「ダウンロード」エイリアスの「本当のとき...」はダウンロードが「遅くなる」からです...しばらくするとaria2cを再起動する必要があります。

答え1

これメモBTの仕組みを考えると*これは良くない考えですが、適切な措置だと思います。イベントフックトリックを行うにはどうすればよいですか?

パラメータをコマンドに渡す方法の例を見てみましょう。

$ cat hook.sh
#!/bin/sh
echo "Called with [$1] [$2] [$3]"
$ aria2c --on-download-complete hook.sh http://example.org/file.iso
Called with [1] [1] [/path/to/file.iso]

これ--seed-time--seed-ratioオプション多くのユースケースも自動化できます。

*あなたのことを確認することをお勧めします設定BitTorrentで読んでください)

関連情報