sql >> データベース >  >> RDS >> Mysql

MySQLの画面にVimのようなKを表示するには

    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に 、そのため、認識できない用語でマニュアルを実行しても、画面は自動的にウィンドウを閉じません(エラーメッセージを非表示にします)。



    1. このテキストファイルを読み取ってMySQLに挿入するにはどうすればよいですか?

    2. 異なるデータベースの複数のテーブルを接続しますか? MySql

    3. ログイン試行を抑制する方法-PHP&MySQL&CodeIgniter

    4. Windows用のMySQLコマンドラインクライアント