MySQLのドキュメントサイト からマニュアルページをインストールしたと仮定します。 :
以下を/path/to/mysql-help.screen
に入力します :
# mysql-help.screen
# prevent messages from slowing this down
msgminwait 0
# copy term starting at cursor
copy
stuff " e "
# write term to a file
writebuf /tmp/screen-copied-term
# open that file in man in a new screen window
# (use `read` to pause on error, so user can see error message)
screen /bin/sh -c 'man `cat /tmp/screen-copied-term` || read'
# turn message waiting back on
msgminwait 1
# vi: ft=screen
次に、これを~/.screenrc
に追加します
# Have CTRL-A ESC put you in a mode to accept commands in the 'escaped' class
bind \033 command -c escaped
# add CTRL-M as an 'escaped' class command to run the given screen script
bind -c escaped ^M source /path/to/mysql-help.screen
その後、キーバインドが機能するはずです。 man
以外のマニュアルを表示するために別のプログラムを使用している場合 、それに応じてスクリプトを変更する必要があります。
man
上記のリンクで見つけたmysqlのページには、次のコマンドのドキュメントのみが含まれています。
追加を検討することもできます
zombie kr
.screenrc
に 、そのため、認識できない用語でマニュアルを実行しても、画面は自動的にウィンドウを閉じません(エラーメッセージを非表示にします)。