├── .gitignore ├── .gitmodules ├── HELP.txt ├── LICENSE.md ├── README.md ├── ash ├── core_modules └── module_aliases.yaml ├── global_modules └── .gitignore └── install.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/.gitmodules -------------------------------------------------------------------------------- /HELP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/HELP.txt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/README.md -------------------------------------------------------------------------------- /ash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/ash -------------------------------------------------------------------------------- /core_modules/module_aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/core_modules/module_aliases.yaml -------------------------------------------------------------------------------- /global_modules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ash-shell/ash/HEAD/install.sh --------------------------------------------------------------------------------