मान लें कि आपने 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
. पर , ताकि यदि आप किसी ऐसे शब्द पर मैनुअल चलाते हैं जिसे वह नहीं पहचानता है, तो स्क्रीन स्वचालित रूप से विंडो को बंद नहीं करती है (और त्रुटि संदेश को छिपाती है)।