mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 15:18:01 +00:00
19 lines
323 B
Markdown
19 lines
323 B
Markdown
# Create A Named tmux Session
|
|
|
|
When creating a new tmux session
|
|
|
|
```bash
|
|
$ tmux new
|
|
```
|
|
|
|
a default name of `0` will be given to the session.
|
|
|
|
If you'd like to give your session a name with a bit more meaning, use the
|
|
`-s` flag
|
|
|
|
```bash
|
|
$ tmux new -s burrito
|
|
```
|
|
|
|
[source](https://robots.thoughtbot.com/a-tmux-crash-course)
|