⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 thttpd.sh

📁 非常优秀的linux嵌入式http服务器
💻 SH
字号:
#!/bin/sh## thttpd.sh - startup script for thttpd on FreeBSD## This goes in /usr/local/etc/rc.d and gets run at boot-time.case "$1" in    start)    if [ -x /usr/local/sbin/thttpd_wrapper ] ; then	echo -n " thttpd"	/usr/local/sbin/thttpd_wrapper &    fi    ;;    stop)    kill -USR1 `cat /var/run/thttpd.pid`    ;;    *)    echo "usage: $0 { start | stop }" >&2    exit 1    ;;esac

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -