Is this possible, I thought it was . Or maybe the functionality was removed ?
Ad Widget
Collapse
use brackets inside system.run?
Collapse
X
-
Tags: None
-
Hi,
Maybe you should escape those special characters (brackets, quotes etc.)? I don't remember the full list which needed to be escaped but maybe that is your case.
Is it possible that you share the exact example command here?
Best Regards,
Ingus -
I was trying to use sed. Something like: sed s/([0-9]+)//
I tried escaping and quoting and still get the syntax error message from the gui.Comment
-
Damn... wasted a bunch of time on this. I had an existing system.run with this. All I had to do was look through my old templates.
Works:
system.run["curl ...|sed 's/[^0-9]*//g'"]
Doesn't work:
system.run[curl ...|sed "'s/[^0-9]*//g'"]👍 1Comment

Comment