Bootstrap

centos7 定时执行shell脚本

1.开启crond服务

systemctl crond start

2.开启开机自启

chkconfig crond on

3.编辑cron表达式

crontab -e 进入编辑模式

ep */1 * * * * ~/Mem.sh >~/MemOut.txt 2>&1 &

*/1 * * * * 代表 m h d M w 具体查询一下cron表达式
>~/MemOut.txt 2>&1 & 代表后台运行脚本输出日志到指定文件

保存退出就ok

4.shell脚本入门举例
新建 vi hello.sh
#!/bin/bash
echo "hello world!"

;