micro/pkg/shellwords
2019-12-25 17:05:10 -05:00
..
LICENSE Change project layout and use go.mod 2019-12-25 17:05:10 -05:00
README.md Change project layout and use go.mod 2019-12-25 17:05:10 -05:00
shellwords.go Change project layout and use go.mod 2019-12-25 17:05:10 -05:00
util_posix.go Change project layout and use go.mod 2019-12-25 17:05:10 -05:00
util_windows.go Change project layout and use go.mod 2019-12-25 17:05:10 -05:00

This is a modified version of go-shellwords for the micro editor.

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)