├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── Dockerfile ├── LICENSE.txt ├── README.md ├── screenshot.png ├── setup.py ├── shcheck.py ├── shcheck ├── __init__.py └── shcheck.py └── tests ├── __init__.py └── test_shcheck.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/screenshot.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/setup.py -------------------------------------------------------------------------------- /shcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/shcheck.py -------------------------------------------------------------------------------- /shcheck/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shcheck/shcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/shcheck/shcheck.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_shcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/santoru/shcheck/HEAD/tests/test_shcheck.py --------------------------------------------------------------------------------