16.3. 时间 / 日期 命令

时间/日期和计时

date

简单调用 date 会将日期和时间打印到标准输出。 这个命令有趣的地方在于它的格式化和解析选项。

示例 16-10. 使用 date

#!/bin/bash
# Exercising the 'date' command

echo "The number of days since the year's beginning is `date +%j`."
# Needs a leading '+' to invoke formatting.
# %j gives day of year.

echo "The number of seconds elapsed since 01/01/1970 is `date +%s`."
#  %s yields number of seconds since "UNIX epoch" began,
#+ but how is this useful?

prefix=temp
suffix=$(date +%s)  # The "+%s" option to 'date' is GNU-specific.
filename=$prefix.$suffix
echo "Temporary filename = $filename"
#  It's great for creating "unique and random" temp filenames,
#+ even better than using $$.

# Read the 'date' man page for more formatting options.

exit 0

-u选项给出 UTC(世界协调时间)。

bash$ date
Fri Mar 29 21:07:39 MST 2002



bash$ date -u
Sat Mar 30 04:07:42 UTC 2002
	      

此选项有助于计算不同日期之间的时间间隔。

示例 16-11. Date 计算

#!/bin/bash
# date-calc.sh
# Author: Nathan Coulter
# Used in ABS Guide with permission (thanks!).

MPHR=60    # Minutes per hour.
HPD=24     # Hours per day.

diff () {
        printf '%s' $(( $(date -u -d"$TARGET" +%s) -
                        $(date -u -d"$CURRENT" +%s)))
#                       %d = day of month.
}


CURRENT=$(date -u -d '2007-09-01 17:30:24' '+%F %T.%N %Z')
TARGET=$(date -u -d'2007-12-25 12:30:00' '+%F %T.%N %Z')
# %F = full date, %T = %H:%M:%S, %N = nanoseconds, %Z = time zone.

printf '\nIn 2007, %s ' \
       "$(date -d"$CURRENT +
        $(( $(diff) /$MPHR /$MPHR /$HPD / 2 )) days" '+%d %B')" 
#       %B = name of month                ^ halfway
printf 'was halfway between %s ' "$(date -d"$CURRENT" '+%d %B')"
printf 'and %s\n' "$(date -d"$TARGET" '+%d %B')"

printf '\nOn %s at %s, there were\n' \
        $(date -u -d"$CURRENT" +%F) $(date -u -d"$CURRENT" +%T)
DAYS=$(( $(diff) / $MPHR / $MPHR / $HPD ))
CURRENT=$(date -d"$CURRENT +$DAYS days" '+%F %T.%N %Z')
HOURS=$(( $(diff) / $MPHR / $MPHR ))
CURRENT=$(date -d"$CURRENT +$HOURS hours" '+%F %T.%N %Z')
MINUTES=$(( $(diff) / $MPHR ))
CURRENT=$(date -d"$CURRENT +$MINUTES minutes" '+%F %T.%N %Z')
printf '%s days, %s hours, ' "$DAYS" "$HOURS"
printf '%s minutes, and %s seconds ' "$MINUTES" "$(diff)"
printf 'until Christmas Dinner!\n\n'

#  Exercise:
#  --------
#  Rewrite the diff () function to accept passed parameters,
#+ rather than using global variables.

date 命令有很多输出选项。 例如%N给出当前时间的纳秒部分。 一个有趣的用途是生成随机整数。

date +%N | sed -e 's/000$//' -e 's/^0//'
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
#  Strip off leading and trailing zeroes, if present.
#  Length of generated integer depends on
#+ how many zeroes stripped off.

# 115281032
# 63408725
# 394504284

还有更多选项(尝试 man date)。

date +%j
# Echoes day of the year (days elapsed since January 1).

date +%k%M
# Echoes hour and minute in 24-hour format, as a single digit string.



# The 'TZ' parameter permits overriding the default time zone.
date                 # Mon Mar 28 21:42:16 MST 2005
TZ=EST date          # Mon Mar 28 23:42:16 EST 2005
# Thanks, Frank Kannemann and Pete Sjoberg, for the tip.


SixDaysAgo=$(date --date='6 days ago')
OneMonthAgo=$(date --date='1 month ago')  # Four weeks back (not a month!)
OneYearAgo=$(date --date='1 year ago')

另请参阅 示例 3-4示例 A-43

zdump

时区转储:回显指定时区的时间。

bash$ zdump EST
EST  Tue Sep 18 22:09:22 2001 EST
	      

time

输出执行命令的详细计时统计信息。

time ls -l /给出类似这样的信息

real    0m0.067s
 user    0m0.004s
 sys     0m0.005s

另请参阅上一节中非常相似的 times 命令。

Note

从 Bash 的 版本 2.0 开始,time 成为 shell 保留字,在管道中行为略有改变。

touch

用于将文件的访问/修改时间更新为当前系统时间或其他指定时间的实用程序,但也可用于创建新文件。 命令touch zzz将创建一个名为zzz的零长度新文件,假设zzz之前不存在。 以这种方式对空文件进行时间戳标记对于存储日期信息很有用,例如用于跟踪项目上的修改时间。

Note

touch 命令等效于: >> newfile>> newfile(对于普通文件)。

Tip

在执行 cp -u复制/更新)之前,请使用 touch 更新您不希望覆盖的文件的时戳。

例如,如果目录/home/bozo/tax_audit包含文件spreadsheet-051606.data, spreadsheet-051706.data,以及spreadsheet-051806.data,那么执行 touch spreadsheet*.data 将保护这些文件在 cp -u /home/bozo/financial_info/spreadsheet*data /home/bozo/tax_audit 期间不被同名文件覆盖。

at

at 作业控制命令在指定时间执行给定的命令集。 从表面上看,它类似于 cron,但是,at 主要用于一次性执行命令集。

at 2pm January 15提示输入一组在该时间执行的命令。 这些命令应与 shell 脚本兼容,因为实际上,用户正在逐行键入可执行 shell 脚本。 输入以 Ctl-D 结束。

使用-f选项或输入重定向 (<),at 从文件中读取命令列表。 该文件是一个可执行的 shell 脚本,尽管它当然应该是非交互式的。 特别聪明的是在文件中包含 run-parts 命令以执行不同的脚本集。

bash$ at 2:30 am Friday < at-jobs.list
job 2 at 2000-10-27 02:30
	      

batch

batch 作业控制命令类似于 at,但它会在系统负载降至.8以下时运行命令列表。 与 at 一样,它可以使用-f选项从文件中读取命令。

cal

将格式整齐的月历打印到标准输出。 将显示当年或过去和未来较大范围的年份。

sleep

这是 shell 中 等待循环的等效命令。 它暂停指定的秒数,不执行任何操作。 它可用于计时或在后台运行的进程中,每隔一段时间检查特定事件(轮询),如 示例 32-6 所示。

sleep 3     # Pauses 3 seconds.

Note

sleep 命令默认为秒,但也可以指定分钟、小时或天。

sleep 3 h   # Pauses 3 hours!

Note

对于以定时间隔运行命令,watch 命令可能是比 sleep 更好的选择。

usleep

微秒睡眠u 可以读作希腊字母 mu,或 微- 前缀)。 这与上面的 sleep 相同,但以微秒为间隔“睡眠”。 它可用于精细计时,或用于以非常频繁的间隔轮询正在进行的进程。

usleep 30     # Pauses 30 microseconds.

此命令是 Red Hat initscripts / rc-scripts 软件包的一部分。

Caution

usleep 命令不能提供特别精确的计时,因此不适用于关键的计时循环。

hwclock, clock

hwclock 命令访问或调整机器的硬件时钟。 某些选项需要 root 权限。/etc/rc.d/rc.sysinit启动文件使用 hwclock 从硬件时钟设置启动时的系统时间。

clock 命令是 hwclock 的同义词。