Is there a way to effectively do this in bash:
/my/bash/script < echo \'This string will be sent to stdin.\'
I\'m aware that I could pip
You can also use read like this
read
echo "enter your name" read name echo $name