├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── readme.md └── src ├── autocomplete.rs ├── control.rs ├── history.rs ├── lib.rs ├── serial.rs └── shell.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/readme.md -------------------------------------------------------------------------------- /src/autocomplete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/src/autocomplete.rs -------------------------------------------------------------------------------- /src/control.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/src/control.rs -------------------------------------------------------------------------------- /src/history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/src/history.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/serial.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/src/serial.rs -------------------------------------------------------------------------------- /src/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotcypress/ushell/HEAD/src/shell.rs --------------------------------------------------------------------------------