请教个问题 cgi程序是如何和应用程序关联起来的?html网页可以通过get,post向cgi程序传递信息,但cgi是怎样输出信息的呢? 如leds.cgi,如下: #!/bin/sh
type=0 period=1
case $QUERY_STRING in *ping*) type=0 ;; *counter*) type=1 ;; *stop*) type=2 ;; esac
case $QUERY_STRING in *slow*) period=0.25 ;; *normal*) period=0.125 ;; *fast*) period=0.0625 ;; esac
/bin/echo $type $period > /tmp/led-control
echo "Content-type: text ml; charset=gb2312" echo /bin/cat led-result.template 其中这行:/bin/echo $ period ? /tmp/led-control 是怎么通过Query_String的环境变量传递给应用程序??? 麻烦了,谢谢!
|