markdown 在linux crontab定时命令中使用日期变量,任务不执行

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 在linux crontab定时命令中使用日期变量,任务不执行相关的知识,希望对你有一定的参考价值。

## 在 linux crontab 定时命令中使用日期变量,任务不执行
错误写法:
```
08 6 * * * sudo /bin/bash /tmp/test_data.sh > /tmp/test_data_`date +%Y%m%d`.log 2>&1
```

正确写法(转义 `%` => `\%`):
```
08 6 * * * sudo /bin/bash /tmp/test_data.sh > /tmp/test_data_`date +\%Y\%m\%d`.log 2>&1
```

以上是关于markdown 在linux crontab定时命令中使用日期变量,任务不执行的主要内容,如果未能解决你的问题,请参考以下文章

Linux- Linux自带定时调度Crontab使用详解

Linux Crontab 定时任务 命令详解

Linux命令crontab定时任务

Linux 定时执行shell脚本命令之crontab

linux crontab 定时任务计划

如何让linux定时任务crontab按秒执行