1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-17 07:35:24 +02:00
tldr/pages.es/common/tmux.md
Darío Hereñú 7d4fe8100c
tmux: update page and Spanish translation (#11856)
* tmux: update Spanish translation

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>

* tmux: update page

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-12-28 15:42:36 +05:30

682 B

tmux

Multiplexor de terminal. Permite múltiples sesiones con ventanas, paneles y más. Ver también: zellij, screen. Más información: https://github.com/tmux/tmux.

  • Inicia una nueva sesión:

tmux

  • Inicia una nueva sesión con nombre:

tmux new -s {{nombre}}

  • Lista las sesiones existentes:

tmux ls

  • Adjunta a la última sesión utilizada:

tmux attach

  • Separa la sesión actual (dentro de una sesión tmux):

Ctrl-B d

  • Crea una nueva ventana (dentro de una sesión tmux):

Ctrl-B c

  • Cambia entre sesiones y ventanas (dentro de una sesión tmux):

Ctrl-B w

  • Da de baja una sesión por su nombre:

tmux kill-session -t {{nombre}}