ターミナルで直接deluge-consoleコマンドをパイプする方法はありますか?
何かを実行したかった:deluge-console; add torrent-file-url.torrent
deluge-console
を実行すると、通常の端末の上にある別の画面にリダイレクトされることを知っています。これをbashスクリプトでラップしたかった。
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"