├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .travis.yml ├── LICENSE ├── README.md ├── _example └── pipe.go ├── go.mod ├── go.test.sh ├── shellwords.go ├── shellwords_test.go ├── util_posix.go └── util_windows.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/README.md -------------------------------------------------------------------------------- /_example/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/_example/pipe.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/mattn/go-shellwords 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/go.test.sh -------------------------------------------------------------------------------- /shellwords.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/shellwords.go -------------------------------------------------------------------------------- /shellwords_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/shellwords_test.go -------------------------------------------------------------------------------- /util_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/util_posix.go -------------------------------------------------------------------------------- /util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/go-shellwords/HEAD/util_windows.go --------------------------------------------------------------------------------