Created
December 5, 2014 19:58
-
-
Save gabrielcesar/31422589382e8731c413 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
''' | |
20141205 | |
''' | |
import os | |
print 'content-type: text/html\n' | |
for parameter in os.environ.keys (): | |
print '%s: %s<br />' % ( parameter, os.environ [ parameter ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment