gitextract_9g2q4bcd/ ├── .coveragerc ├── .flake8 ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .python-version ├── .readthedocs.yaml ├── .vscode/ │ └── tasks.json ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE.txt ├── MIGRATION.md ├── Makefile ├── README.rst ├── dev_scripts/ │ └── changelog_extract.py ├── docs/ │ ├── Makefile │ ├── requirements.txt │ └── source/ │ ├── conf.py │ ├── examples/ │ │ └── done.rst │ ├── fulldoc.rst │ ├── index.rst │ ├── ref_to_fulldoc.rst │ ├── reference.rst │ ├── sections/ │ │ ├── architecture.rst │ │ ├── asynchronous_execution.rst │ │ ├── baking.rst │ │ ├── command_class.rst │ │ ├── contrib.rst │ │ ├── default_arguments.rst │ │ ├── envs.rst │ │ ├── exit_codes.rst │ │ ├── faq.rst │ │ ├── passing_arguments.rst │ │ ├── piping.rst │ │ ├── redirection.rst │ │ ├── special_arguments.rst │ │ ├── stdin.rst │ │ ├── subcommands.rst │ │ ├── sudo.rst │ │ └── with.rst │ ├── tutorials/ │ │ ├── interacting_with_processes.rst │ │ └── real_time_output.rst │ ├── tutorials.rst │ └── usage.rst ├── pyproject.toml ├── sh.py ├── tests/ │ ├── Dockerfile │ ├── __init__.py │ └── sh_test.py └── tox.ini