为什么在很多CGI脚本中需要空的echo / print行?

时间:2017-07-05 08:43:39

标签: python bash

为什么在很多CGI脚本中需要空的echo / print行?

示例bash:

#!/bin/bash
echo "Content-type: text/html"
echo ''
echo 'CGI Bash Example'

示例python:

#!/usr/bin/env python
# -*- coding: UTF-8 -*-

# enable debugging
import cgitb
cgitb.enable()

print "Content-Type: text/plain;charset=utf-8"
print  

print "Hello World!"

0 个答案:

没有答案