Merge pull request #40 from SoarinFerret/send-command-shell-fix
"Send Command" shell whitespace fix
This commit is contained in:
commit
d4faa2a233
@ -306,7 +306,8 @@ func (a *Agent) CmdV2(c *CmdOptions) CmdStatus {
|
|||||||
} else if c.IsExecutable {
|
} else if c.IsExecutable {
|
||||||
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, c.Command) // c.Shell: bin + c.Command: args as one string
|
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, c.Command) // c.Shell: bin + c.Command: args as one string
|
||||||
} else {
|
} else {
|
||||||
envCmd = gocmd.NewCmdOptions(cmdOptions, c.Shell, "-c", c.Command) // /bin/bash -c 'ls -l /var/log/...'
|
commandArray := append(strings.Fields(c.Shell), "-c", c.Command)
|
||||||
|
envCmd = gocmd.NewCmdOptions(cmdOptions, commandArray[0], commandArray[1:]...) // /bin/bash -c 'ls -l /var/log/...'
|
||||||
}
|
}
|
||||||
|
|
||||||
var stdoutBuf bytes.Buffer
|
var stdoutBuf bytes.Buffer
|
||||||
|
Loading…
Reference in New Issue
Block a user