?? boa.init
字號:
#!/bin/sh# The following two lines enable chkconfig(1) to manipulate this script# chkconfig: 345 87 13# description: Boa is a World Wide Web server. It is used to serve \# HTML files and CGI.# processname: boa# config: /etc/boa/boa.conf# There is no pid file# Source function library.. /etc/rc.d/init.d/functions# See how we were called.case "$1" in start) echo -n "Starting boa: " daemon boa touch /var/lock/subsys/boa echo ;; stop) echo -n "Shutting down boa: " killproc boa echo rm -f /var/lock/subsys/boa rm -f /var/run/boa.pid ;; status) status boa ;; restart) $0 stop $0 start ;; reload) echo -n "Reloading boa: " killproc boa -HUP echo ;; *) echo "Usage: $0 {start|stop|restart|reload|status}" exit 1esacexit 0
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -