我有以下文件/etc/cron.d/my_tasks,我想知道如何在此文件中设置环境变量。
以前我是这样设置的:
0 5 * * * root . /root/.profile path/to/my/task
但是我不想在这里显式设置root,我想拥有类似的东西:
0 5 * * * . $HOME.profile path/to/my/task
尽管如此,Cron不会像在/ etc / crontab中那样为cron.d中的文件加载环境变量。
是否可以以与我尝试的方式类似的方式加载环境变量?
谢谢