open-vault/vendor/github.com/mattn/go-shellwords
Sam Salisbury 8f0c38f78d
run go mod vendor (#7736)
2019-10-25 13:35:22 +01:00
..
.travis.yml run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
LICENSE run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
README.md run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
go.mod run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
shellwords.go run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
util_go15.go run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
util_posix.go run go mod vendor (#7736) 2019-10-25 13:35:22 +01:00
util_windows.go run go mod vendor (#7736) 2019-10-25 13:35:22 +01: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)