美文网首页
data命令

data命令

作者: 5e1b18effb55 | 来源:发表于2019-06-01 10:12 被阅读0次

    格式:

    date[选项][+指定的格式]

    参数 作用
    %t 跳格[Tab键]
    %H 小时(00~23)
    %I 小时(00~12)
    %M 分钟(00~59)
    %S 秒(00~59)
    %j 今年中的第几天

    查看系统时间:

    [linuxprobe@linuxprobe ~]$ date
    Sat Jun 1 10:02:00 CST 2019

    按照格式查看系统时间:

    [linuxprobe@linuxprobe ~]$ date "+%Y-%m-%d %H:%M:%S"
    2019-06-01 10:05:42

    设置系统时间:

    [linuxprobe@linuxprobe ~]$ sudo date -s "20190601 10:08:00"
    [sudo] password for linuxprobe:
    Sat Jun 1 10:08:00 CST 2019

    查看今天时间年第几天:

    [linuxprobe@linuxprobe ~]$ date "+%j"
    152

    相关文章

      网友评论

          本文标题:data命令

          本文链接:https://www.haomeiwen.com/subject/uvjotctx.html