Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL के लिए स्क्रीन में विम-जैसे 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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Django में डेटा को असामान्य करने का सबसे अच्छा तरीका?

  2. MySQL में पिछले 10 मिनट से रिकॉर्ड कैसे प्राप्त करें

  3. उबंटू पर MySQL वर्कबेंच कैसे स्थापित करें

  4. MySQL में पूर्णांक (पूर्णांक के साथ पूर्णांक) और varchar (varchar के साथ varchar) जैसे डेटाटाइप को कैसे सम्मिलित करें?

  5. EntityFramework के साथ संग्रहित प्रक्रियाओं को कैसे कॉल करें?