欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux crontab执行脚本 博客分类: Linux系统  

程序员文章站 2024-02-09 11:12:16
...

1.首先编辑脚本文件,文件扩展名为.sh,如test.sh

   #!bin/bash

   #ceshi

cp /root/abc.txt /home

 2.  vim /etc/crontab

12 02 * * * root sh /home/test.sh

其中sh可以省略,但root不能省略。