├── .gitignore ├── .travis.yml ├── CHANGES.md ├── LICENSE ├── README.md ├── actions.go ├── command.go ├── command_test.go ├── completer.go ├── context.go ├── example └── main.go ├── functions.go ├── go.mod ├── go.sum ├── ishell.go ├── progress.go ├── reader.go ├── utils_unix.go └── utils_windows.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/CHANGES.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/README.md -------------------------------------------------------------------------------- /actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/actions.go -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/command.go -------------------------------------------------------------------------------- /command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/command_test.go -------------------------------------------------------------------------------- /completer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/completer.go -------------------------------------------------------------------------------- /context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/context.go -------------------------------------------------------------------------------- /example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/example/main.go -------------------------------------------------------------------------------- /functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/functions.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/go.sum -------------------------------------------------------------------------------- /ishell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/ishell.go -------------------------------------------------------------------------------- /progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/progress.go -------------------------------------------------------------------------------- /reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/reader.go -------------------------------------------------------------------------------- /utils_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/utils_unix.go -------------------------------------------------------------------------------- /utils_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiosoft/ishell/HEAD/utils_windows.go --------------------------------------------------------------------------------