如何从简单的CGI python服务器运行shell脚本?

时间:2014-11-30 03:34:19

标签: python linux bash shell

我在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'

如何让它运行呢?

1 个答案:

答案 0 :(得分:3)

确保shell脚本是可执行的。

chmod +x example-bash.sh

DEMO