Time

可以使用 at 調度任務,並將目前時間作為參數傳遞給某些操作

  • July 13, 2017

在 GNU / Linux 中,我可以使用at命令等來安排類似這樣的任務:

# at 07:07 
warning: commands will be executed using /bin/sh
at> To run the task
at> <EOT>

到現在為止沒有問題,我產生的疑問是,這可能嗎?如果是,我怎樣才能讓它花費系統時間並應用操作,如下所示:

#at get_system_time + 25_min

是的,您可以 -at具有相當複雜的日期/時間解析功能1。特別是您可以使用now目前時間。為了顯示:

steeldriver@xenial-vm:~$ date
Wed Apr 12 10:56:53 EDT 2017

steeldriver@xenial-vm:~$ at now + 25 minutes
warning: commands will be executed using /bin/sh
at> echo "foo" > /home/steeldriver/at.out
at> <EOT>
job 20 at Wed Apr 12 11:21:00 2017

1包括teatime例如

引用自:https://unix.stackexchange.com/questions/358577