terraform/vendor/github.com/mattn/go-shellwords
Radek Simko fce24f5ad3
vendor: github.com/mattn/go-shellwords@v1.0.4
2019-02-22 16:54:29 +00:00
..
.travis.yml vendor: update to latest github.com/zclconf/go-cty 2018-10-16 19:14:11 -07:00
LICENSE vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00
README.md vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00
go.mod vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00
shellwords.go vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00
util_go15.go vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00
util_posix.go vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00
util_windows.go vendor: github.com/mattn/go-shellwords@v1.0.4 2019-02-22 16:54:29 +00:00

README.md

go-shellwords

Coverage Status Build Status

Parse line as shell words.

Usage

args, err := shellwords.Parse("./foo --bar=baz")
// args should be ["./foo", "--bar=baz"]
os.Setenv("FOO", "bar")
p := shellwords.NewParser()
p.ParseEnv = true
args, err := p.Parse("./foo $FOO")
// args should be ["./foo", "bar"]
p := shellwords.NewParser()
p.ParseBacktick = true
args, err := p.Parse("./foo `echo $SHELL`")
// args should be ["./foo", "/bin/bash"]
shellwords.ParseBacktick = true
p := shellwords.NewParser()
args, err := p.Parse("./foo `echo $SHELL`")
// args should be ["./foo", "/bin/bash"]

Thanks

This is based on cpan module Parse::CommandLine.

License

under the MIT License: http://mattn.mit-license.org/2017

Author

Yasuhiro Matsumoto (a.k.a mattn)