Top > Screen screen
FreeBSDへのインストールについてはFreeBSD#p2e5655dを参照 よく使うコマンドScreen起動中に使うコマンド
screen起動前に使うコマンド
キーバインドの設定についてCtrl-aが標準のキーバインドになっているが、これはemacs等で使用しているので変更した方がよい。自分の場合はCtrl-zにしている(Ctrl-tにしているサイトが多いけど、zの方が指が近くて押しやすい)。この場合は.screenrcに以下のように記述する。 defencoding eucJP escape ^z^z 文字コードを簡単に変更できるキーバインドの設定Ctrl-Z Ctrl-Eで文字コード変更モードに入れるキーバインドの設定。変更モードに入ったらeかuかsを押すと文字コードが変わる。 # encoding settings 2010/02/21 bind ^E eval 'echo "encoding"' 'command -c enc' bind -c enc ^] command bind -c enc u encoding utf8 utf8 bind -c enc ^U encoding utf8 utf8 bind -c enc e encoding eucjp utf8 bind -c enc ^E encoding eucjp utf8 bind -c enc s encoding sjis utf8 bind -c enc ^S encoding sjis utf8 ましろんに教わりました。 関連サイト
|