1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

tmuxコマンド一覧(メモ)〜セッション, ウィンドウ〜

Posted at

セッション

アタッチ

tmux a -t セッション名

デタッチ

[Prefix] d

セッションを新規作成する

tmux new -s セッション名

セッション一覧を確認する

tmux ls

または

tmux list-sessions

または、tmuxセッション内にいる場合

[Prefix] s

セッション名を変更する

tmux rename-session -t 旧セッション名 新セッション名

または、tmuxセッション内にいる場合(但し、現在のセッションのみ変更可)

[Prefix] $

特定のセッションを削除する

tmux kill-session -t セッション名

または、tmuxセッション内にいる場合(但し、現在のセッションのみ削除可)

exit

すべてのセッションを削除

tmux kill-server

セッションの保存

[Prefix] Ctrl + s

ウィンドウ

ウィンドウを新規作成する

[Prefix] c

特定のウィンドウ名を変更する

[Prefix] ,

特定のウィンドウ番号を変更する

tmux move-window -s 元の番号 -t 新しい番号

または、tmuxセッション内にいる場合(但し、現在のセッションのみ変更可)

[Prefix] .

特定のウィンドウを削除する

tmux kill-window -t ウィンドウ番号

または、tmuxセッション内にいる場合(但し、現在のセッションのみ削除可)

[Prefix] &
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?