I am trying to combine the results of a command and a here string like this:
cat <(echo first) <<< second
I am getting this output:
first
Instead of
first
second
Why?
I am trying to combine the results of a command and a here string like this:
cat <(echo first) <<< second
I am getting this output:
first
Instead of
first
second
Why?