无法理解 .screenrc 中的两行
我不知道你如何在屏幕上看到以下几行的效果
bind ^g screen -t 'Google' links www.google.com
bind G screen -t 'Google' sudo -u insec links www.google.com
我尝试在回滚模式下按 Ctrl-g 组合键,但没有成功。 在我的手册中搜索可点击的单词,但没有成功
man man
我还尝试通过How can you see theeffects of thelines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要尝试
bind ^g
行,请按 Ctrl-A Ctrl-G。要尝试
bind G
行,请按 Ctrl-A Shift-G。如果
bind
行位于$HOME/.screenrc
中并且您在保存$HOME/.screenrc
后已启动屏幕,则所有这些键绑定都在屏幕内工作>。 要查看屏幕是否正在运行,请按 Ctrl-A V(不带 Shift)。 这将在窗口底行向您显示(以反色)屏幕的版本号。 如果您没有获得此信息,则必须先启动 screen,方法是输入screen
并按 Enter。要获取有关在 GNU 屏幕中定义自定义键绑定的更多信息,请阅读 CUSTOMIZATION 部分中的
bind
条目。 manpagez.com/man/1/screen/" rel="nofollow noreferrer">屏幕手册页。To try the
bind ^g
line, press Ctrl-A Ctrl-G.To try the
bind G
line, press Ctrl-A Shift-G.All those key bindings work inside screen if the
bind
lines are in$HOME/.screenrc
and you have started screen after saving$HOME/.screenrc
. To see if you have screen running, press Ctrl-A V (without shift). This will show you (in reverse color) the version number of screen at the bottom row in the window. If you don't get this information, you have to start screen first, by typingscreen
and pressing Enter.The get more information about defining custom key bindings in GNU screen, please read the entry for
bind
in the CUSTOMIZATION section of the man page of screen.您需要先按
Ctrl-A
,然后按Ctrl-G
。它应该创建一个新窗口,执行
links
(当然你还必须安装它)程序,以文本模式浏览谷歌。Ctrl-A
然后G
应以用户“insec”运行,然后再次运行链接。you need to hit
Ctrl-A
thenCtrl-G
.it should create a new window that executes
links
(of course you must also have it installed) program to browse google in text mode.Ctrl-A
thenG
should run as user 'insec' and then run links again.