crontab添加时间
Posted xianguang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了crontab添加时间相关的知识,希望对你有一定的参考价值。
1)/usr/local/src/datecrontalog.sh
#!/bin/bash
if [ $# -gt 1 ]; then
istring=‘‘
#去掉回车
date=`date | tr -s ["\n"]`
for (( i = 2; i <= $#; i++ ))
do
string=$string" "${!i}
done
c=$date": "$string
echo "" >> $1
echo $c >> $1
fi
2)
*/1 * * * * /opt/otrs/bin/otrs.Console.pl Maint::Cache::Delete --type Group 2>&1 | xargs /usr/local/src/datecrontalog.sh /tmp/otrs_de
以上是关于crontab添加时间的主要内容,如果未能解决你的问题,请参考以下文章