linux 添加自己的启动脚本程序

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 添加自己的启动脚本程序相关的知识,希望对你有一定的参考价值。

#!/bin/sh


#chkconfig: 2345 80 05

#description:zwy

#processname:zwy 


start(){

echo "zwy service is starting"

echo "start">>/root/zwy.txt

}

stop(){

echo "zwy service is stop"

echo "stop">>/root/zwy.txt

}

case $1 in

start)

start

;;

stop)

stop

;;

restart)

stop

start

;;

*)

echo $"usage:$0 {start|stop|restart}"

exit2

esac



**************************8

chkconfig --add zwy


本文出自 “weiweiyong” 博客,请务必保留此出处http://8152509.blog.51cto.com/8142509/1881276

以上是关于linux 添加自己的启动脚本程序的主要内容,如果未能解决你的问题,请参考以下文章

linux开机启动脚本

开机自启脚本

Linux设置开机启动

Linux Ubuntu 20.04 —添加开机启动(服务/脚本)

添加啥代码可以使vbs脚本开机自启动?

linux设置开机自启动脚本的最佳方式