tmux
Terminal Multiplexer인 tmux의 사용법을 정리한다.
1. tmux
1.1. Session 단축키
tmux new -s [session-name]: Session 생성tmux ls: Session 목록tmux attach -t [session-name or session-number]: Session Attachctrl + b,d: Session Detach
1.2. Window 단축키
ctrl + b,c: Window 생성ctrl + b,0~9: 번호 Windows로 이동ctrl + b,n: 다음 Windows로 이동ctrl + b,p: 이전 Windows로 이동ctrl + b,l: 마지막 Windows로 이동ctrl + b,w: Window Selector 실행
1.3. Pane
ctrl + b,%: 횡 분활ctrl + b,": 종 분활ctrl + b, 방향키 : Pane 이동
1.4. ETC
ctrl + b,?: 단축키 목록
2. 참조
- tmux 입문자 시리즈 요약 : https://edykim.com/ko/post/tmux-introductory-series-summary/