📄 solaris.init
字号:
#!/bin/sh# Contributed by Brian Murrell state=$1 set `who -r`case $state in 'start') if [ $9 = "2" -o $9 = "3" ] then exit fi if [ -f @PREFIX@/sbin/dhcpd ]; then echo "Starting the ISC DHCP server" @PREFIX@/sbin/dhcpd fi ;;'stop') if [ -f @PREFIX@/etc/dhcpd.pid ]; then PID=`cat @PREFIX@/etc/dhcpd.pid` if [ -d /proc/$PID ]; then echo "Stopping the ISC DHCP server" kill $PID fi fi ;;esac
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -