[tmux] 간단 사용법 본문
- 새로운 세션
tmux new -s [세션명 or 번호]
- 세션 종료
exit
- 세션 목록
tmux ls
- 세션 불러오기(Attached)
tmux attach -t [세션명 or 번호]
- 세션 빠져나가기(Detached)
( ctrl + b ) d
** ctrl과 b를 동시에 누를 후 d를 눌러준다. 아래 모두 동일 (ctrl + b가 tmux의 hotkey다)
- 특정 세션 강제 종료
tmux kill-session -t [세션명 or 번호]
- 세션명 변경
tmux rename-session -t [현재 세션명 or 번호] [변경할 세션명]
- pane 나누기
( ctrl + b ) % : 가로 분할
( ctrl + b ) " : 세로 분할
- pane 삭제
( ctrl + b ) x
- pane 이동
( ctrl + b ) 방향키
'프로그래밍' 카테고리의 다른 글
[docker] command-line (0) | 2020.12.10 |
---|---|
[php] 유닛 테스트 도입기 (0) | 2020.12.09 |
[php] 자체 프레임 워크에 blade template engine 도입기 (0) | 2020.10.11 |
Comments
Copyright ⓒ dub All Rights Reserved.