Is it possible to chain commands with pipe operator? #15
-
Hi! Basically the title is the question) As I understand, current implementation is not capable of doing something like Some context: We would like to be able to trigger any command from the outside, but even if I'll parse the command string, the input of the second command ( Is there a way to work around that in the current implementation? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You might try bash -c, using bash as the main command of Command, -c is the first parameter, followed by your external command as the second parameter |
Beta Was this translation helpful? Give feedback.
You might try bash -c, using bash as the main command of Command, -c is the first parameter, followed by your external command as the second parameter