Darren Shepherd 03db5d1058 Update vendor/ | 8 年之前 | |
---|---|---|
.. | ||
.travis.yml | 8 年之前 | |
README.md | 8 年之前 | |
shellwords.go | 8 年之前 | |
util_posix.go | 8 年之前 | |
util_windows.go | 8 年之前 |
Parse line as shell words.
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"]
This is based on cpan module Parse::CommandLine.
under the MIT License: http://mattn.mit-license.org/2014
Yasuhiro Matsumoto (a.k.a mattn)