To have Vim-like K in Screen for MySQL

后端 未结 3 2067
花落未央
花落未央 2020-12-20 10:03

This question is based on this thread.

Problem: to access MySQL\'s manual when the cursor is at the beginning of the word by

Ctrl-A          


        
3条回答
  •  醉话见心
    2020-12-20 10:59

    I love to recycle my Man -pages such that I can read easily manuals. I suggests the following improvement to Rampion's command.

    Rampion

    screen /bin/sh -c 'man `cat /tmp/screen-copied-term` || read'
    

    Me

    screen /bin/sh -c 'man `cat /tmp/screen-copied-term` > /tmp/manual | less /tmp/manual'
    

    My code gives you the percent sign to the bottom of a manual.

提交回复
热议问题