moby--moby/vendor/github.com/mattn/go-shellwords
Sebastiaan van Stijn 7dee71e02f
bump mattn/go-shellwords v1.0.6
full diff: https://github.com/mattn/go-shellwords/compare/v1.0.5...v1.0.6

relevant changes:

- mattn/go-shellwords#24 Add dir option for parser
- mattn/go-shellwords#26 Fix backquote in part of argument
    - fixes mattn/go-shellwords#25 Backtick "eats" all runes until isSpace
- mattn/go-shellwords#28 Fix dollar quote
    - fixes mattn/go-shellwords#27 Multi-commands inside of command substitution are throwing "invalid command line string" errors
- mattn/go-shellwords#24 Add dir option for parser
- mattn/go-shellwords#24 Add dir option for parser
- mattn/go-shellwords#24 Add dir option for parser

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2019-10-06 02:19:58 +02:00
..
LICENSE Vendor package update github.com/mattn/go-shellwords 2017-04-11 18:14:00 +05:30
README.md bump mattn/go-shellwords v1.0.6 2019-10-06 02:19:58 +02:00
go.mod bump vndr to f5ab8fc5f, and revendor 2019-06-28 18:13:17 +00:00
shellwords.go bump mattn/go-shellwords v1.0.6 2019-10-06 02:19:58 +02:00
util_go15.go bump mattn/go-shellwords v1.0.6 2019-10-06 02:19:58 +02:00
util_posix.go bump mattn/go-shellwords v1.0.6 2019-10-06 02:19:58 +02:00
util_windows.go bump mattn/go-shellwords v1.0.6 2019-10-06 02:19:58 +02:00

README.md

go-shellwords

codecov 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)