1. 程式人生 > >非交互模式寫入crontab -e

非交互模式寫入crontab -e

pre 一個 sch -m san mys 定時任務 date 交互模式

非交互模式直接寫入crontab -e
root@centos-mysql01:~# crontab  -l
*/5 * * * *  chkrootkit_everyday.sh > dev/null 2>&1
*/20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
* * * * * /usr/bin/php /data/monitor/artisan schedule:run > /dev/null 2>&1

添加一個/5 * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1

 root@centos-mysql01:~# (crontab -l;echo "*/5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1 ") | crontab
 root@centos-mysql01:~# crontab  -l
      */5 * * * *  chkrootkit_everyday.sh > dev/null 2>&1
      */20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
      * * * * * /usr/bin/php /data/monitor/artisan schedule:run > /dev/null 2>&1
      */5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1 

刪除一個crontab

 root@centos-mysql01:~# crontab  -l|grep -v  "monitor"|crontab  
 root@centos-mysql01:~# crontab  -l
    */5 * * * *  chkrootkit_everyday.sh > dev/null 2>&1
    */20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
    */5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1

添加多個定時任務

 root@centos-mysql01:~#  crontab -l | grep -v "dev" | crontab #刪除全部定時任務
 root@centos-mysql01:~# crontab  -l
     root@centos-mysql01:~# crontab -l;echo "*/5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1
      > */20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
      > */5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1"|crontab

 root@centos-mysql01:~# crontab  -l
     */5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1
     */20 * * * * /usr/sbin/ntpdate pool.ntp.org > /dev/null 2>&1
     */5 * * * * /data/sh/chkrootkit_everyday.sh > /dev/null 2>&1         

非交互模式寫入crontab -e