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添加时间的主要内容,如果未能解决你的问题,请参考以下文章

使用 Bash 脚本添加到 Crontab(如果不存在)

脚本里添加crontab的方法

crontab添加时间

crontab

脚本添加crontab任务

Linux 添加定时任务,crontab -e 命令与直接编辑 /etc/crontab 的区别