步骤:
1.新建HttpServer目录
2.在HttpServer目录下新建cgi-bin目录
3.在cgi-bin目录下新建helloworld.sh文件,内容如下:
#!/bin/bash
echo "Content-Type:text/html"
echo ""
echo "hello world!"
4.在cgi-bin目录下打开命令行,执行
chmod +x helloworld.sh
赋予helloworld.sh可执行的权限
5.在HttpServer目录下打开命令行,执行命令
nohup python -m CGIHTTPServer 8088 &
就会把HttpServer目录以后台服务的方式作为CGIHTTPServer启动,运行log可在当前目录的nohup.out文件中查看。
6.打开浏览器,地址栏出入:
http://localhost:8088/cgi-bin/helloworld.sh
即可看到输出的Hello World!
参考:
基于Python的CGIHTTPServer简单的交互实现
python模块cgihttpserver启动
Python使用CGIHTTPServer调用shell作为cgi脚本