「tmux」の版間の差分

提供: Eospedia
移動: 案内検索
(ページの作成:「== tmux == * https://github.com/tmux/tmux == bash補完 == * https://github.com/imomaliev/tmux-bash-completion」)
 
行4: 行4:
 
== bash補完 ==
 
== bash補完 ==
 
* https://github.com/imomaliev/tmux-bash-completion
 
* https://github.com/imomaliev/tmux-bash-completion
 +
 +
== セッション一覧の確認 ==
 +
$ tmux ls
 +
 +
== デタッチしたセッションへのアタッチ ==
 +
$ tmux ls
 +
でセッション一覧を表示。
 +
 +
0: 1 windows (created Thu May 16 12:58:12 2019) [169x55]
 +
とか表示されたら、:の左の数字がセッション番号。
 +
 +
$ tmux attach -t <セッション番号>
 +
tは"target session"の意。

2019年5月16日 (木) 04:05時点における版

tmux

bash補完

セッション一覧の確認

$ tmux ls

デタッチしたセッションへのアタッチ

$ tmux ls

でセッション一覧を表示。

0: 1 windows (created Thu May 16 12:58:12 2019) [169x55]

とか表示されたら、:の左の数字がセッション番号。

$ tmux attach -t <セッション番号>

tは"target session"の意。