Files
envcleaner/envcleaner.py
Joseph Hopfmüller 6b7be8c487 first commit
2024-01-26 11:40:02 +01:00

21 lines
376 B
Python

"""
environment-cleaner
Usage:
envcleaner.py (-a | <variable>)
Options:
-h, --help show this help and exit
-a, --all check all environment variables
variable environment variable to check
"""
from docopt import docopt
import os
def main():
args = docopt(__doc__, version='envcleaner v0.1')
# os.getenv('PATH')
if __name__ == '__main__': main()