Linux crontab 创建带日期的日志文件
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
一般命令
##每天10点执行
00 10 * * * /usr/bin/php -f /home/cron/phpmailer/phone.php >> /home/cron/phpmailer/log/phone.log 2>&1
根据日期变化命令
##每天10点执行
00 10 * * * /usr/bin/php -f /home/cron/phpmailer/phone.php >> "/home/cron/phpmailer/log/phone-$(date +"\%Y-\%m-\%d").log" 2>&1
##第二种
00 10 * * * /usr/bin/php -f /home/cron/phpmailer/phone.php >> /home/cron/phpmailer/log/phone-$(date +""\%Y-\%m-\%d"").log
2>&1 表示把标准错误输出重定向到与标准输出一致,不管错误的还是正常的日志都写入到文件中
date 跟时间的用法一致:
借鉴地址:https://blog.csdn.net/fdipzone/article/details/51778543
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献16条内容
所有评论(0)