在命令中使用 linux' - 可以每天/每周安排吗?

Using linux' at command - scheduling daily / weekly possible?

我最近在命令行上遇到了 at 命令,但我想知道我是否可以编写一个 bash 脚本,以某种方式使我能够在晚上 8 点将 at 命令告诉 运行每天,或者每周一,每周等等,基本上是定期的。这怎么可能?

at 是这项工作的错误工具。

您正在寻找 cron

每天晚上 8 点是:

0 20 * * * /bin/execute/this/script.sh

每周一晚上 8 点:

0 20 * * 1 /bin/execute/this/script.sh