daisy Asked: 2021-12-19 04:19:24 +0800 CST2021-12-19 04:19:24 +0800 CST 2021-12-19 04:19:24 +0800 CST 如何清除所有窗格中的 tmux 历史记录 772 我tmux clear-history用来清除屏幕历史记录。但它只适用于当前窗格,我怎样才能对所有可用窗格执行此操作? tmux 2 个回答 Voted Best Answer Marcus Müller 2021-12-19T06:32:25+08:002021-12-19T06:32:25+08:00 您只需在每个窗格上运行 clear-history for pane in $(tmux list-panes -F '#{pane_id}'); do tmux clear-history -t "${pane}" done abotalib 2022-04-28T01:49:44+08:002022-04-28T01:49:44+08:00 tmux list-panes -s | sed 's/:.*//g' | xargs -n 1 tmux clear-history -t 这将清除所有窗口上的所有窗格。
您只需在每个窗格上运行 clear-history
这将清除所有窗口上的所有窗格。