问这个问题有点尴尬。
我有一个在 Debian 10下运行的服务器。
它有 2 个 root 用户,另一个用户用于服务器上的应用程序。
有一个 bash 脚本每天在 root 下运行。我需要更改它的运行时间。
root crontab 或用户 crontab 中没有任何内容。 /etc/cron.daily 中没有任何内容。
有人知道如何实施吗?
查看
sudo nano /etc/crontab
或 ls /etc/cron.d
以修改 Bash 中的周期脚本。 cron 作业格式为
# Minute Hour Day of Month Month Day of Week Command
0 2 * * * /path/to/script.sh
在不知道你的脚本到底是什么的情况下,我无法告诉你更多信息。