├── .github └── workflows │ └── test.yml ├── LICENSE.txt ├── README.rst ├── argparse.bash ├── example.sh └── test.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhoffman/argparse-bash/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhoffman/argparse-bash/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhoffman/argparse-bash/HEAD/README.rst -------------------------------------------------------------------------------- /argparse.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhoffman/argparse-bash/HEAD/argparse.bash -------------------------------------------------------------------------------- /example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhoffman/argparse-bash/HEAD/example.sh -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nhoffman/argparse-bash/HEAD/test.py --------------------------------------------------------------------------------