Skip to content
This repository has been archived by the owner on Oct 2, 2022. It is now read-only.

Releases: ContainerSSH/unixutils

1.0.0: First stable version

01 Apr 14:03
15e5dce
Compare
Choose a tag to compare

This release tags the first stable version for ContainerSSH 0.4.0.

0.9.0: ParseCMD

05 Dec 20:01
3f2fba5
Compare
Choose a tag to compare
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!\"]