This commit is contained in:
root
2024-04-18 02:18:40 +03:00
parent c527f09bbd
commit 33bab38915
3 changed files with 16 additions and 1 deletions

View File

@@ -22,5 +22,5 @@ git remote set-url origin https://site/repo.git
last = log -1 HEAD
[safe]
directory = /mnt/data/src
directory = *
```

12
docs/progs/tmux.md Normal file
View File

@@ -0,0 +1,12 @@
# 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
```