您可以将一些自动化脚本添加为一个开启启动服务,如 :
#!/bin/bash
i=100
while [ $i -lt 1000 ]
do
sleep 10
curl https://www.baidu.com/ -o /auto1.log
done
vim /etc/init.d/test
#!/bin/bash
# chkconfig: 2345 55 25
# description: test ...
/bin/bash /autofc.sh &
注意 & : 后台运行,否则会影响其他程序启动!
chkconfig --add test