web-dev-qa-db-ja.com

deluge-consoleダイレクトターミナルの使用

ターミナルで直接deluge-consoleコマンドをパイプする方法はありますか?

何かを実行したかった:deluge-console; add torrent-file-url.torrent

deluge-consoleを実行すると、通常の端末の上にある別の画面にリダイレクトされることを知っています。これをbashスクリプトでラップしたかった。

2
upbeta01

deluge-console manページから:

コンソールコマンドをコマンドラインから直接渡し、セミコロン(;)で区切って複数のコマンドを実行できます。

deluge-console add torrent-file-url.torrent
deluge-console add torrent-file-url.torrent; info torrent_id

ファイル名のスペースに関する問題を防ぐには、コマンド文字列全体を引用符で囲みます。

deluge-console "add torrent-file-url.torrent; info torrent_id"
4
Cas