Questions tagged [shell]
A shell is software that lets users interact with the operating system, usually by typing at a command-line.
1 questions from the last 7 days
3
votes
1
answer
209
views
How to run shell commands via stdin?
I was working with a command like this:
ssh another_host <<EOF
set -x
command_a
command_b
run_framework
command_c
...
EOF
The odd thing was that only commands up to and including run_framework ...