How to I concatenate stdin to a string, like this?
echo \"input\" | COMMAND \"string\"
and get
inputstring
cat will be my choice: ls | cat - <(echo new line)
ls | cat - <(echo new line)