13 lines
264 B
Markdown
13 lines
264 B
Markdown
|
|
# tmux
|
|
|
|
## Exapmle [-| ]
|
|
```bash
|
|
tmux new-session -d 'bash' \; split-window -hd 'bash' \; split-window -v -t 0 -d 'bash' \; attach
|
|
```
|
|
|
|
## Example [ |-]
|
|
```bash
|
|
tmux new-session -d 'bash' \; split-window -hd 'bash' \; split-window -v -t 1 -d 'bash' \; attach
|
|
```
|