Replies: 1 comment 1 reply
-
You need to setup the recipe in Shebang mode cmd:
#!/bin/sh
out=$(ls /)
echo "files: " $out or make it a one-liner cmd:
out=$(ls /); echo "files: " $out |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is it possible to grab the output of a command like in bash and use it afterwards? This
fails with
sh: 1: out: parameter not set
Beta Was this translation helpful? Give feedback.
All reactions