Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- VirtualBox
- plugin
- GIT
- netsh
- find
- bash
- Source
- Quartz
- 줄바꿈 문자
- vscode
- port
- 네트워크
- Windows
- ssh
- web.xml
- resource
- import
- lsof
- IntelliJ
- Windows 10
- maVen
- tomcat
- context
- JavaScript
- 단축키
- Eclipse
- grep
- profile
- Mac
- xargs
Archives
- Today
- Total
develog
[bash] tmux 본문
tmux 설치, 실행, 종료
# tmux 설치
$ sudo yum install -y tmux
# tmux 실행
$ tmux
# tmux 종료
ctrl + d
pane 조작
# prefix 단축키
ctrl + b
# pane 좌,우 분할
(prefix 단축키) + %
# pane 상,하 분할
(prefix 단축키) + " # double quotation"
# pane 창 이동
(prefix 단축키) + 방향키 (상,하,좌,우)
# pane 창 크기 조절
(prefix 단축키) + ctrl + 방향키
# pane 창 zoom in, out
(prefix 단축키) + z
# pane 종료
(prefix 단축키) + x
2개 pane 에 명령어 동시 입력
# pane 동기화 on
(prefix 단축키) + :
setw synchronize-panes on
# pane 동기화 off
(prefix 단축키) + :
setw synchronize-panes off
'OS & Shell > bash' 카테고리의 다른 글
[bash] executing commands remotely using ssh (0) | 2020.09.18 |
---|---|
[bash] set, export, env (0) | 2020.09.16 |
[bash] 다중 명령 실행 && || ; (0) | 2020.09.15 |
[bash] 로컬 shell script 파일을 원격 서버에서 실행하기 (0) | 2019.02.26 |
[bash] existStr (0) | 2019.02.15 |
Comments