程序执行的日期和时间

程序执行的日期和时间

如何在程序中间加载程序执行的日期和时间。每次我使用 exec date 命令时,它似乎都会忽略其下的所有内容。

答案1

help exec

exec: exec [-cl] [-a name] [command [arguments ...]] [redirection ...]
    Replace the shell with the given command.

你不想替换当前 shell(这将阻止脚本执行到达任何后续命令):只需使用date

echo "HELLO"
date
echo "HI"

相关内容