├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── command.go ├── command_test.go ├── doc.go ├── escape.go ├── escape_test.go └── example_test.go /.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/README.md -------------------------------------------------------------------------------- /command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/command.go -------------------------------------------------------------------------------- /command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/command_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/doc.go -------------------------------------------------------------------------------- /escape.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/escape.go -------------------------------------------------------------------------------- /escape_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/escape_test.go -------------------------------------------------------------------------------- /example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keegancsmith/shell/HEAD/example_test.go --------------------------------------------------------------------------------