将 .sh 添加到开启启动

您可以将一些自动化脚本添加为一个开启启动服务,如 :

test.sh

#!/bin/bash
i=100
while [ $i -lt 1000 ]
do
	sleep 10
	curl https://www.baidu.com/ -o /auto1.log
done

添加开机启动

1. 创建开机启动服务

vim /etc/init.d/test

2. 编写以下代码

#!/bin/bash
# chkconfig: 2345 55 25
# description: test ...

/bin/bash /autofc.sh &

注意 & : 后台运行,否则会影响其他程序启动!

3. 添加开机启动服务

 chkconfig --add test

4. 重启服务器测试即可