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 |
Tags
- Windows
- ssh
- import
- xargs
- netsh
- profile
- vscode
- plugin
- IntelliJ
- port
- Windows 10
- web.xml
- Eclipse
- 네트워크
- tomcat
- Quartz
- 줄바꿈 문자
- context
- VirtualBox
- JavaScript
- GIT
- resource
- 단축키
- maVen
- bash
- Source
- Mac
- lsof
- grep
- find
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