This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
0.9.0: ParseCMD
Pre-release
Pre-release
The ParseCMD()
method takes a command line and parses it into an execv-compatible slice of strings.
args, err := unixutils.ParseCMD("/bin/sh -c 'echo \"Hello world!\"'")
//args will be: ["/bin/sh", "-c", "echo \"Hello world!\"]