我在linux上有一个非常简单的CGI python服务器,代码如下:
#!/usr/bin/env python
import BaseHTTPServer
import CGIHTTPServer
import cgitb; cgitb.enable() ## This line enables CGI error reporting
server = BaseHTTPServer.HTTPServer
handler = CGIHTTPServer.CGIHTTPRequestHandler
server_address = ("", 8000)
handler.cgi_directories = ["/"]
httpd = server(server_address, handler)
httpd.serve_forever()
在同一目录中,我有一个名为example-bash.sh的脚本。我想要做的就是当我导航到localhost:8000 / example-bash.sh时,能够在浏览器中显示该bash脚本的输出。当我尝试时,它只是打开文件而不是运行它。
example-bash只有以下代码:
#!/bin/bash
echo "Content-type: text/html"
echo ''
echo 'CGI Bash Example'
如何让它运行呢?