Skip to content

Commit

Permalink
Merge pull request tldr-pages#251 from AgIt0/master
Browse files Browse the repository at this point in the history
Add tmux
  • Loading branch information
rprieto committed Nov 2, 2014
2 parents 011da19 + d63d1a7 commit 5f3e3aa
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pages/common/tmux.md
Original file line number Diff line number Diff line change
@@ -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}}

0 comments on commit 5f3e3aa

Please sign in to comment.