歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Linux中service命令和/etc/init.d/的關系

Linux中service命令和/etc/init.d/的關系

日期:2017/2/28 15:45:35   编辑:Linux教程

service xxx啟動 /etc/init.d/ 目錄下的xxx腳本
如一個腳本名為 mysvc保存在/etc/init.d/下可以用 service mysvc 運行mysvc腳本
echo passed in option $0 $1

if [ $1 = "start" ]
then
echo myservice started........................................
elif [ $1 = "stop" ]
then
echo myservice stoped........................................
else
echo myservice not supported option........................................

fi


[root@localhost init.d]# service mysvc start
passed in option /etc/init.d/mysvc start
myservice started........................................

[root@localhost init.d]# service mysvc stop
passed in option /etc/init.d/mysvc stop
myservice stoped........................................

[root@localhost init.d]# service mysvc xxx
passed in option /etc/init.d/mysvc xxx
myservice not supported option........................................

Copyright © Linux教程網 All Rights Reserved