有没有办法告诉这个命令以本地时间(而不是UTC)输出数据?
last reboot
版本:
last --version
last von util-linux 2.27.1
答案1
TZ
如果您需要一些(由于可怕的夏令时波动而造成麻烦)本地时区,请使用,如 @Toby 所示:
% TZ=US/Pacific last | sed -n /reboot/p | sed -n 1p
reboot system boot 2.6.32-642.1.1.e Mon Jul 25 09:55 - 08:47 (29+22:51)
% last | sed -n /reboot/p | sed -n 1p
reboot system boot 2.6.32-642.1.1.e Mon Jul 25 16:55 - 15:47 (29+22:51)
%