Skip to content

Commit

Permalink
tmux -t is illegal option
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt authored Feb 6, 2020
1 parent b7dd961 commit d5d76e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _2020/command-line.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ The most popular terminal multiplexer these days is [`tmux`](http://man7.org/lin
`tmux` expects you to know its keybindings, and they all have the form `<C-b> x` where that means press `Ctrl+b` release, and the press `x`. `tmux` has the following hierarchy of objects:
- **Sessions** - a session is an independent workspace with one or more windows
+ `tmux` starts a new session.
+ `tmux -t NAME` starts it with that name.
+ `tmux new -s NAME` starts it with that name.
+ `tmux ls` lists the current sessions
+ Within `tmux` typing `<C-b> d` dettaches the current session
+ `tmux a` attaches the last session. You can use `-t` flag to specify which
Expand Down

0 comments on commit d5d76e2

Please sign in to comment.