Gemini/public/notes/unix/tmux.gmi

42 lines
640 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Горячие клавиши tmux
## Создать сесссию
```
tmux new -s session_name
```
## Показать список сессий
```
tmux list-sessions
tmux ls
```
## присоединиться к сессии
```
tmux attach-session -t number
```
## Разделить панель
```
Ctrl + b " # по вертикали
Ctrl + b % # по горизонтали
```
## Перемещение по панелям
```
Ctrl + b [СТРЕЛКИ]
```
## Переименовать сессию
```
Ctrl + b $
```
## Закрыть сессию
```
Ctrl + b d
```
-----
=> index.gmi 🔝 К unix заметкам