mirror of
https://github.com/dockersrc/scripts
synced 2024-11-21 23:23:05 -05:00
9 lines
163 B
Python
9 lines
163 B
Python
|
#!/usr/bin/env python
|
||
|
import sys
|
||
|
import os
|
||
|
|
||
|
print "Content-Type: text/html\n\n"
|
||
|
|
||
|
for name, value in os.environ.items():
|
||
|
print "%s\t= %s <br/>" % (name, value)
|