====== 20 screenコマンド ======
|プリフィックスコマンド|ctrl + a|
|セッション一覧|screen -ls|
|セッション名をつけてアッタチ|screen -S {セッション名}|
|セッションアタッチ(既にアッタチ済みは無理)|screen -r PID|
|セッションのデタッチ|screen -d PID|
|ウィンドウ作成|ctrl+a c|
|前方のウィンドウの切り替え|ctrl+a n|
|ウィンドウの名前変更|ctrl+a + A|
|ウィンドウ終了|ctrl+D|
===== screenrc =====
screenの設定を書いておく、下記だとプリフィックスコマンドが、ctrl + jになります。
.screenrcをメモっておく
escape ^Jj
bind w windowlist -b
bind ^] paste [.]
bind u eval "encoding UTF-8"
bind e eval "encoding eucJP"
bind s eval "encoding SJIS"
bind j eval "encoding jis"
setenv LANG ja_JP.UTF-8
shell /bin/bash
vbell off
bell_msg "Bell in window %^G"
hardstatus alwayslastline "%{= gk} %{gW} %-w%{= wk}%n %t%{-}%+w %=%{gk}"
windowlist string "%4n %t %h%=%f"
hardstatus off
startup_message off
autodetach on
[[http://qiita.com/mgoldchild/items/e336618487eb7d90f6d4|screenコマンド]]
{{tag> screen}}