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

shell定时任务脚本

程序员文章站 2022-07-06 10:46:37
...

shell定时任务脚本

简单的shell

#创建文件夹
mkdir /usr/local/shell
#创建脚本
touch /usr/local/shell/test.sh
#编辑脚本
vim /usr/local/shell/test.sh
#脚本内容
#!/bin/bash
echo "Hello World !"

# #!是一个约定的标记,它告诉系统这个脚本需要什么解释器来执行,即使用哪一种 Shell。
# echo 命令用于向窗口输出文本。 

chmod +x ./test.sh  #使脚本具有执行权限
./test.sh  #执行脚本

#如果是windows编写的文件,linux无法执行,解决方案
vim /usr/local/shell/test.sh
set ff=unix

定时任务

#crond定时方式的配置
vim /etc/crontab #在最后一行加上定时任务的配置
#每分钟执行一次
*/1 * * * * root /usr/local/shell/test.sh
#修改crontab的配置后需要重启crontab,使配置生效
/bin/systemctl restart crond.service
#检测cron定时服务是否自启用
systemctl is-enabled crond.service
#enable表示已启用自启动
#disable标识未启用自启动
#启动 
systemctl enable crond.service
#禁用 
systemctl disable crond.service

定时任务(定时向文件输出)

#创建脚本
#创建文件夹
mkdir /usr/local/shell
#创建脚本
touch /usr/local/shell/test.sh
#编辑脚本
vim /usr/local/shell/test.sh
#脚本内容 >表示覆盖 >>表示追加
#!/bin/bash
echo "$(date +"%Y-%m-%d %T")Hello World !" >>/usr/local/shell/test.txt
#使脚本具有执行权限
chmod +x ./test.sh 
#手动执行判断是否成功
./test.sh
#查看输出结果
cat /usr/local/shell/test.txt
#输出结果 2021-07-01 13:48:15Hello World ! 

#开启定时任务执行
#检测cron定时服务是否自启用
systemctl is-enabled crond.service
#enable表示已启用自启动 disable标识未启用自启动
#启动 
systemctl enable crond.service
#禁用 
systemctl disable crond.service

#设定定时任务
#crond定时方式的配置
vim /etc/crontab 
#在最后一行加上定时任务的配置 每分钟执行一次
*/1 * * * * root /usr/local/shell/test.sh
#修改crontab的配置后需要重启crontab,使配置生效
/bin/systemctl restart crond.service

#查看结果
cat /usr/local/shell/test.txt
#输出以下结果
2021-07-01 13:48:15Hello World !
2021-07-01 13:53:01Hello World !
2021-07-01 13:54:02Hello World !