moby--moby/vendor/github.com/mattn/go-shellwords
Manjunath A Kumatagi 3d6d9061e3 Vendor package update github.com/mattn/go-shellwords
Signed-off-by: Manjunath A Kumatagi <mkumatag@in.ibm.com>
2017-04-11 18:14:00 +05:30
..
LICENSE Vendor package update github.com/mattn/go-shellwords 2017-04-11 18:14:00 +05:30
README.md Vendor package update github.com/mattn/go-shellwords 2017-04-11 18:14:00 +05:30
shellwords.go Vendor package update github.com/mattn/go-shellwords 2017-04-11 18:14:00 +05:30
util_posix.go project: use vndr for vendoring 2016-11-03 15:31:46 -07:00
util_windows.go project: use vndr for vendoring 2016-11-03 15:31:46 -07: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)