1
2
|
#基本HTTP python - m BaseHTTPServer 8080
|
如果当前目录有index.html 则可以直接显示
1
2
|
#简单HTTP 包含GET与HEAD请求 python - m SimpleHTTPServer 8080
|
1
2
|
#HTTP 包含POST请求 当前 python - m CGIHTTPServer 8080
|
已sh脚本为CGI程序的语言 如下: 当前目录下新建cgi-bin目录
1
2
3
4
5
6
7
8
9
10
|
#!/bin/bash echo "Content-Type: text/html" # HTML is following
echo ""
echo "<H1>This is my first CGI script</H1>"
echo "Hello, world!"
for ((i=1;i<=100;i++))
do echo $i
done |
访问地址
http://localhost:8000/cgi-bin/index.sh
将输入SHELL脚本内容
本文转自flyingzf 51CTO博客,原文链接:http://blog.51cto.com/flyingzf/1827577,如需转载请自行联系原作者