7 月17日作业

  1. 显示10天前是星期几
    [root@centos7 ~]#date -d -10day +%A Saturday
  2. 显示当前时间,格式:2016-06-18 10:20:30
    [root@centos7 ~]#date +"%F %T" 2017-07-18 14:45:48
  3. 设置当前日期为2019-08-07 06:05:10
    [root@centos7 ~]#date 080706052019.10 Wed Aug 7 06:05:10 CST 2019
  4. 在本机字符终端登录时,除显示原有信息外,再显示当前登录终端号,主机名和当前时间
[root@centos7 ~]#vim /etc/issue
\S
Kernel \r on an \m
my tty is \l        <--->显示终端号
my hostname is \n    <--->显示主机名
the time is \t        <--->显示时间
  1. 今天18:30自动关机,并提示用户
[root@centos7 ~]#shutdown -h 18:30 "systerm will halt"
Shutdown scheduled for Tue 2017-07-18 18:30:00 CST, use 'shutdown -c' to cancel.

你可能感兴趣的:(7 月17日作业)