Skip to content

Instantly share code, notes, and snippets.

@miebach
Created July 2, 2011 13:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miebach/1060197 to your computer and use it in GitHub Desktop.
Save miebach/1060197 to your computer and use it in GitHub Desktop.
Print the environment array in python
import os
for param in os.environ.keys():
print "%20s %s" % (param,os.environ[param])
# from http://www.wellho.net/resources/ex.php4?item=y115/penv.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment