Como limpar todas as janelas do tmux?

0

Quando pressionei Ctrl + b w, vi as janelas que usei antes. Como eu poderia deletar todos eles?

    
por Edward Lin 04.08.2018 / 17:33

1 resposta

2

Da página de manual do tmux:

  kill-window [-a] [-t target-window]
               (alias: killw)

         Kill the current window or the window at target-window, removing it 
         from any sessions to which it is linked.  The -a option kills all 
         but the window given with -t.

Então, no seu prompt de comando, tente:

$ tmux kill-window -a

Se você tiver uma janela que deseja preservar, inclua-a também:

$ tmux kill-window -a -t:<window number>
    
por 04.08.2018 / 18:08

Tags