├── .gitignore ├── README.txt ├── TODO.txt ├── config └── bash_ignore.txt ├── python ├── Bash.py ├── Debug.py ├── EnvironmentObjects.py ├── ShellParser.py ├── argparse.py ├── env-watcher ├── env_manager.py └── env_watcher_completion.py ├── setup.sh └── usage.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | *.pyc 3 | 4 | -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/README.txt -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/TODO.txt -------------------------------------------------------------------------------- /config/bash_ignore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/config/bash_ignore.txt -------------------------------------------------------------------------------- /python/Bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/Bash.py -------------------------------------------------------------------------------- /python/Debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/Debug.py -------------------------------------------------------------------------------- /python/EnvironmentObjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/EnvironmentObjects.py -------------------------------------------------------------------------------- /python/ShellParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/ShellParser.py -------------------------------------------------------------------------------- /python/argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/argparse.py -------------------------------------------------------------------------------- /python/env-watcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/env-watcher -------------------------------------------------------------------------------- /python/env_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/env_manager.py -------------------------------------------------------------------------------- /python/env_watcher_completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/python/env_watcher_completion.py -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/setup.sh -------------------------------------------------------------------------------- /usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrmasterplan/EnvWatcher/HEAD/usage.txt --------------------------------------------------------------------------------