课堂练习:
1、字符终端登录时,显示当前登录终端号,主机名和当前时间
[root@centos6 ~]# tty #显示当前终端号 /dev/pts/0 [root@centos6 ~]# date #显示当前时间 Sat Jul 30 11:17:24 CST 2016 [root@centos6 ~]# hostname #显示当前主机名 centos6 [root@centos6 ~]# cat /etc/issue #在/etc/issue文件中编辑如下 CentOS release 6.8 (Final) Kernel \r on an \m tty is \l date is \d
2、今天17:30自动关机
[root@centos6 ~]# shutdown -h 17:30 "system will halt" & #后面加“&”特殊符号,表示后台运行 [root@centos6 ~]# ps aux |grep 2966 #已显示在后台运行,运行的PID号为2966
作业:
1、只显示某目录下隐藏文件
[root@centos6 ~]# ls -ad .* 或 [root@centos6 ~]# ls -a --ignore=[^.]*
2、只显示某目录下目录列表
[root@centos6 ~]# ls -d .*/ */
原创文章,作者:Aleen,如若转载,请注明出处:http://www.178linux.com/26850