thttpd_wrapper

来自「MiniWeb 在嵌入式平台上运行的WEB源代码」· 代码 · 共 16 行

TXT
16
字号
#!/bin/sh## thttpd_wrapper - wrapper script for thttpd on FreeBSD 3.x## This goes in /usr/local/sbin.  It runs thttpd in a loop.  If thttpd# exits then the script restarts it automatically.## The -D flag tells thttpd to *not* put itself into the background,# and the -C flag tells it to get the rest of its configuration from# the specified config file.while true ; do    /usr/local/sbin/thttpd -D -C /usr/local/www/thttpd_config    sleep 10done

⌨️ 快捷键说明

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