Explorar el Código

Merge pull request #251 from AgIt0/master

Add tmux
Romain Prieto hace 10 años
padre
commit
5f3e3aa223
Se han modificado 1 ficheros con 31 adiciones y 0 borrados
  1. 31 0
      pages/common/tmux.md

+ 31 - 0
pages/common/tmux.md

@@ -0,0 +1,31 @@
+# tmux
+
+> Multiplex several virtual consoles
+
+- Start a new tmux session
+
+`tmux`
+
+- Start a new named tmux session
+
+`tmux new -s {{name}}`
+
+- List sessions
+
+`tmux ls`
+
+- Attach to a session
+
+`tmux a`
+
+- Attach to a named session
+
+`tmux a -t {{name}}
+
+- Detach from session
+
+`ctrl+b d`
+
+- Kill session
+
+`tmux kill-session -t {{name}}