1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:22:09 +02:00
tldr/pages.pt_PT/common/tmux.md
Sebastiaan Speck 5f3f8aad2b
pages.pt_PT: update outdated pages (#11925)
* pages.pt_PT: update outdated pages

* Update pages.pt_PT/common/tmux.md

Co-authored-by: Waldir Pimenta <waldyrious@gmail.com>

* Apply suggestions from code review

Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>

---------

Co-authored-by: Waldir Pimenta <waldyrious@gmail.com>
Co-authored-by: Isaac Vicente <isaacvicentsocial@gmail.com>
2024-01-13 19:07:19 -03:00

467 B

tmux

Multiplexador do terminal. Permite várias sessões com janelas, painéis e muito mais. Mais informações: https://github.com/tmux/tmux.

  • Inicia uma nova sessão:

tmux

  • Inicia uma sessão com nome:

tmux new -s {{nome}}

  • Lista sessões existentes:

tmux ls

  • Entra na última sessão utilizada:

tmux attach

  • Sai da sessão atual (com o prefixo Ctrl-B):

<Ctrl>-B d

  • Elimina uma sessão com nome:

tmux kill-session -t {{nome}}