first commit
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.venv
|
||||||
20
envcleaner.py
Normal file
20
envcleaner.py
Normal 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()
|
||||||
BIN
requirements.txt
Normal file
BIN
requirements.txt
Normal file
Binary file not shown.
Reference in New Issue
Block a user