我正在为我的 ubuntu 服务器构建一个脚本。该脚本创建了很多文件,它们运行良好,但现在我需要在 root 用户的 crontab 中添加一行。
如果我手动执行,我会输入sudo crontab -e -u root
并编辑 crontab,但我想为该服务器自动执行。在我的脚本中,我使用它cat <<'EOF' > /sample/of/a/location.php
来创建和填充文件。
我该如何为 root 用户的 crontab 执行此操作?我读到位置是 /var/spool/cron/crontabs/,但我不应该直接编辑它们。
有人能帮我吗?
你好,Lennart