├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── multisheller ├── __init__.py ├── _version.py ├── backend │ ├── __init__.py │ ├── bash.py │ ├── cmdexe.py │ ├── common.py │ ├── powershell.py │ ├── utils.py │ ├── visitor.py │ ├── xonsh.py │ └── zsh.py ├── cli │ ├── __init__.py │ └── main.py ├── cmds.py ├── list.py ├── path.py └── sys.py ├── setup.py └── test ├── environment.yml ├── script_a.py ├── script_b.py ├── sources.py ├── test_basic.py ├── test_path.py └── utils.py /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/README.md -------------------------------------------------------------------------------- /multisheller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/__init__.py -------------------------------------------------------------------------------- /multisheller/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/_version.py -------------------------------------------------------------------------------- /multisheller/backend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multisheller/backend/bash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/bash.py -------------------------------------------------------------------------------- /multisheller/backend/cmdexe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/cmdexe.py -------------------------------------------------------------------------------- /multisheller/backend/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/common.py -------------------------------------------------------------------------------- /multisheller/backend/powershell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/powershell.py -------------------------------------------------------------------------------- /multisheller/backend/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/utils.py -------------------------------------------------------------------------------- /multisheller/backend/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/visitor.py -------------------------------------------------------------------------------- /multisheller/backend/xonsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/xonsh.py -------------------------------------------------------------------------------- /multisheller/backend/zsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/backend/zsh.py -------------------------------------------------------------------------------- /multisheller/cli/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multisheller/cli/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/cli/main.py -------------------------------------------------------------------------------- /multisheller/cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/cmds.py -------------------------------------------------------------------------------- /multisheller/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/list.py -------------------------------------------------------------------------------- /multisheller/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/path.py -------------------------------------------------------------------------------- /multisheller/sys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/multisheller/sys.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/setup.py -------------------------------------------------------------------------------- /test/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/test/environment.yml -------------------------------------------------------------------------------- /test/script_a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/test/script_a.py -------------------------------------------------------------------------------- /test/script_b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/test/script_b.py -------------------------------------------------------------------------------- /test/sources.py: -------------------------------------------------------------------------------- 1 | sources.py -------------------------------------------------------------------------------- /test/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/test/test_basic.py -------------------------------------------------------------------------------- /test/test_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/test/test_path.py -------------------------------------------------------------------------------- /test/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamba-org/multisheller/HEAD/test/utils.py --------------------------------------------------------------------------------