欢迎来到代码驿站!

JAVA代码

当前位置:首页 > 软件编程 > JAVA代码

java screen的配置详解及注意事项

时间:2020-11-02 17:39:19|栏目:JAVA代码|点击:

java screen的配置详解及注意事项

# Set default encoding using utf8 
defutf8 on 
 
## 解决中文乱码,这个要按需配置 
defencoding utf8 
encoding utf8 utf8 
  
#兼容shell 使得.bashrc .profile /etc/profile等里面的别名等设置生效 
shell -$SHELL 
 
#set the startup message 
startup_message off 
#term linux 
 
## 解决无法滚动 
termcapinfo xterm|xterms|xs ti@:te=\E[2J 
  
# 屏幕缓冲区行数 
defscrollback 10000 
  
# 下标签设置 
caption always "%{=u .G} %-w%<%{=ub .y}%n %t%{=u .G}%+w " 
hardstatus alwaysignore 
hardstatus alwayslastline "%{= .K} [%l]%<%=%{= .W}@%H %=%{= .y} %Y/%m/%d%{= .m} %C %A" 
#关闭闪屏 
vbell off 
  
#Keboard binding 
bindkey ^[d prev 
bindkey ^[f next 
 
# bind Alt`~= to screen0~12 
bindkey "^[`" select 0 
bindkey "^[1" select 1 
bindkey "^[2" select 2 
bindkey "^[3" select 3 
bindkey "^[4" select 4 
bindkey "^[5" select 5 
bindkey "^[6" select 6 
bindkey "^[7" select 7 
bindkey "^[8" select 8 
bindkey "^[9" select 9 
bindkey "^[0" select 10 
bindkey "^[-" select 11 
bindkey "^[=" select 12 
# bind F5 to create a new screen 
bindkey ^[n screen 
# bind F6 to detach screen session (to background) 
bindkey -k k6 detach 
# bind F7 to kill current screen window 
bindkey -k k7 kill 
# bind F8 to rename current screen window 
bindkey -k k8 title 
 

启动screen:screen

列出screen: screen -ls

恢复screen:screen -rU

 -U   Run screen in UTF-8 mode,加上-U可以保证恢复时不出现中文乱码 

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

上一篇:SpringBoot Tomcat启动实例代码详解

栏    目:JAVA代码

下一篇:Java 动态加载jar和class文件实例解析

本文标题:java screen的配置详解及注意事项

本文地址:http://www.codeinn.net/misctech/18464.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有