10 lines
185 B
Python
10 lines
185 B
Python
#!/usr/bin/env python
|
|
|
|
from __future__ import print_function
|
|
import os
|
|
|
|
sorted_environment = sorted(os.environ.items())
|
|
|
|
for name,value in sorted_environment:
|
|
print(name,'=',value)
|