first commit

This commit is contained in:
Joseph Hopfmüller
2024-01-26 11:40:02 +01:00
commit 6b7be8c487
3 changed files with 21 additions and 0 deletions

20
envcleaner.py Normal file
View File

@@ -0,0 +1,20 @@
"""
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()