-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some commands fail to run #19
Comments
commandStr = string.gsub( commandStr, '"', '"') Needs testing |
On Thu, Oct 27, 2016 at 6:44 PM, DPini notifications@github.com wrote:
Henning Rogge
|
I was trying to have the same result as running the commands in a sh shell in a local machine. I used this command so it seem to be corner case, I was trying to found commands that fail to "improve" that. |
If you try to run commands with " and &, it fails because it's not parsed correctly when running the command in command-executer.
Example:
echo " echo "asd" & echo "dsa" "
From wibed-node executes:
echo "108 echo " echo "asd" & echo "dsa" "" > "/var/run/command-executer.sock"
That makes that in the pipe, you only get dsa. So it fails
The text was updated successfully, but these errors were encountered: