如何編寫 tmux 腳本以在 tmux 會話(視窗)中執行腳本 2024-11-21 • shell script tmux 我有這個腳本: #!/bin/sh tmux new-session top \; split-window -v \; split-window -h \; select-pane -t 0 \; split-window -h \; attach-session 我想在每個目錄中執行一個shell腳本。如何實現這一目標(tmux new-session sh /path/script.sh \;)? 相關內容