date

读取日期

[root@server3 ~]# date
Thu Mar 27 19:45:52 CST 2014

打印纪元时:从1970年1月1日0时0分0秒起至当前时刻的总秒数

[root@server3 ~]# date +%s
1395920818
将日期串转换为纪元时

[root@server3 ~]# date --date "Thu Nov 17 10:00:00 IST 2014" +%s
1416198600

设置日期和时间

[root@server3 ~]# date -s "17 Nov 1992 10:00:00"
Tue Nov 17 10:00:00 CST 1992
检查运行一组命令所花费的时间的脚本

#!/bin/bash

start=$(date +%s)

commands;

statements;

end=$(date +%s)

take=$((end - start))

echo time takento exec commands is $take seconds.

你可能感兴趣的:(date)