Files
tldr/pages.ja/common/tmux.md
Darío Hereñú 7d4fe8100c tmux: update page and Spanish translation (#11856)
* tmux: update Spanish translation

Co-authored-by: Juri Dispan <juri.dispan@posteo.net>

* tmux: update page

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Juri Dispan <juri.dispan@posteo.net>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-12-28 15:42:36 +05:30

39 lines
880 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 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 {{セッション名}}`