Created
June 14, 2016 03:28
-
-
Save chadmayfield/ef535de7d1fa10623aac4aba3ffcca41 to your computer and use it in GitHub Desktop.
Print env in python
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/python | |
import os | |
for param in os.environ.keys(): | |
print "%20s %s" % (param,os.environ[param]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment