日期:2014-05-16 浏览次数:20744 次
本文链接:http://codingstandards.iteye.com/blog/804213 ? (转载请注明出处)
clear命令是用来清除终端屏幕的(clear the terminal screen),使用过DOS或者Windows的cmd的人知道有个cls命令,可以用来清除屏幕,但Linux底下没有这个命令,我们可以通过使用别名的方式来使Linux系统也具有这个cls命令。另外,按Ctrl+L也可以达到同样的效果,当我们使用vi/vim编辑文件时,如果发现屏幕显示有些混乱,也可以按Ctrl+L来使屏幕显示恢复正常。
无。
如果想使输入cls也可以清屏,在/etc/profile的末尾添加一行:
alias cls=clear
保存之后重新登录就可以输入cls达到clear命令的效果了。
当然更快捷的方式是按住Ctrl键不放,然后再按L了。
[root@web ~]#
[root@web ~]#
[root@web ~]#
[root@web ~]#
[root@web ~]# clear
[root@web ~]#
?
[root@web ~]#
[root@web ~]#
[root@web ~]#
[root@web ~]#
[root@web ~]# Ctrl+L
[root@web ~]#
[root@web ~]# cls
-bash: cls: command not found
[root@web ~]# alias cls=clear
[root@web ~]# cls
[root@web ~]#
【1】天下维客 Linux命令clear
?
返回 我使用过的Linux命令系列总目录
?