Tmux

如何清除所有窗格中的 tmux 歷史記錄

  • April 27, 2022

tmux clear-history用來清除螢幕歷史記錄。但它只適用於目前窗格,我怎樣才能對所有可用窗格執行此操作?

您只需在每個窗格上執行 clear-history

for pane in $(tmux list-panes -F '#{pane_id}'); do
 tmux clear-history -t "${pane}"
done
tmux list-panes -s | sed 's/:.*//g' | xargs -n 1 tmux clear-history -t

這將清除所有視窗上的所有窗格。

引用自:https://unix.stackexchange.com/questions/682973