mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-09-10 16:33:46 +02:00
tmux: add Korean translation (#7959)
This commit is contained in:
parent
97c6028809
commit
1a2846cf85
1 changed files with 37 additions and 0 deletions
37
pages.ko/common/tmux.md
Normal file
37
pages.ko/common/tmux.md
Normal file
|
@ -0,0 +1,37 @@
|
|||
# tmux
|
||||
|
||||
> 터미널 멀티플렉서. tmux는 단일 단말기 창 또는 원격 터미널 세션 안에서 여러 세션을 사용할 수 있도록 도와줍니다.
|
||||
> `zellij` 와 `screen`도 참조하세요.
|
||||
> 더 많은 정보: <https://github.com/tmux/tmux>.
|
||||
|
||||
- 새 세션 시작:
|
||||
|
||||
`tmux`
|
||||
|
||||
- 이름있는 새 세션 시작:
|
||||
|
||||
`tmux new -s {{이름}}`
|
||||
|
||||
- 세션 리스트 출력:
|
||||
|
||||
`tmux ls`
|
||||
|
||||
- 가장 최근에 사용했던 세션에 접근
|
||||
|
||||
`tmux attach`
|
||||
|
||||
- 현재 세션에서 나가기 (tmux 세션 안에서 사용):
|
||||
|
||||
`Ctrl-B d`
|
||||
|
||||
- 새 창 만들기 (tmux 세션 안에서 사용):
|
||||
|
||||
`Ctrl-B c`
|
||||
|
||||
- 세션 혹은 창 변경 (tmux 세션 안에서 사용):
|
||||
|
||||
`Ctrl-B w`
|
||||
|
||||
- 세션 이름으로 종료:
|
||||
|
||||
`tmux kill-session -t {{이름}}`
|
Loading…
Add table
Reference in a new issue