.tmux.conf
他のコマンドをクリックせずに最初からまたはtmuxが起動したときに自動的にシェルコマンドを実行するにはどうすればよいですか?
エイリアス、関数、またはスクリプトを作成する方法(例:
tmuxrc -> tmux + irssi
ベストアンサー1
これが望むものではないようですが、解決策は次のとおりです。
.tmux.confでシェルコマンドを実行する方法
またはrun-shell
その略語はですrun
。tmux
マニュアルページから:
run-shell shell-command (alias: run) Execute shell-command in the background without creating a win- dow. After it finishes, any output to stdout is displayed in copy mode. If the command doesn't return success, the exit sta- tus is also displayed.
起動するたびにバックグラウンドで自動的にスクリプトを起動する必要がある場合にtmux
使用できますrun "command > /dev/null"
。