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

我有一个非常简单的CGI python服务器在Linux上与下面的代码:

#!/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' 

我怎样才能让它运行?

确保shell脚本是可执行的。

 chmod +x example-bash.sh 

DEMO