deepin15-ubuntuenv/gx-env-show-env-list
2023-06-29 20:21:02 +08:00

5 lines
99 B
Python
Executable File

#!/usr/bin/env python3
import os
for i in os.environ:
print("'{}={}'".format(i, os.getenv(i)))