mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-01 09:55:32 +02:00

* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
37 lines
878 B
Markdown
37 lines
878 B
Markdown
# 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 {{セッション名}}`
|