コードスニペットをtmux
使用して、両方のファイルを同時にテールするために使用できる2つの異なるウィンドウを提供します。
tmux new-window -a -n Tail
tmux new-session -d -s Tail -n SSH0 -d
tmux selectp -t Tail
#This is tmux interactions with the user (colors of the tabs used, hot keys, etc.)
tmux bind-key -n M-Left previous-window -t WinSplit
tmux bind-key -n M-Right next-window -t WinSplit
tmux set-window-option -g monitor-activity on
tmux set -g visual-activity on
tmux set-window-option -g window-status-current-bg blue
tmux set-window-option -g window-status-fg red
tmux set -g pane-border-fg yellow
tmux set -g pane-active-border-bg red
tmux set -g message-fg yellow
tmux set -g message-bg red
tmux set -g message-attr bright
tmux set -g status-left "#[fg=red]#S"
#Names two seperate windows
tmux new-window -n tail1 -t Tail
tmux new-window -n tail2 -t Tail
#Now this will allow you to automatically run tail when this tmux script is run
tmux send-keys -t Tail:0 'tail -f file1.log' C-m
tmux send-keys -t Tail:1 'tail -f file2.log' C-m
更新:を使用screen
すると、複数のセッションをアタッチ/デタッチできるため、tail
複数回実行することもできます。私はこれを行うことを提案できます:
screen -s Tail_Server1.log
次にCTRL+A+D
、セッションを強制終了せずに接続を解除してから、次の操作を行います。
screen -s Tail_Server2.log
両方とも2つに分離して実行されますので、両方のスクリーンがあなたのマシンscreens
で動作するscreen --help
ように調整できるように参照しますterminal
。
screen
2つの異なるセッションの作成に使用しようとしましたか?両方の画面でtailを使用できるはずですか?また、tmux
インストールされていれば、同様にジョブを実行できます。