tmux: add Japanese translation (#9782)

pull/3/head
yuiseki 2023-01-22 12:56:15 +09:00 committed by GitHub
parent 69cb4e5122
commit c24098dd17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 37 additions and 0 deletions

37
pages.ja/common/tmux.md Normal file
View File

@ -0,0 +1,37 @@
# 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 {{セッション名}}`