最佳答案
当我运行以下 Bash
脚本时,我希望它打印 Hello
。相反,它打印一个空行并退出。
echo 'Hello' | echo
Why doesn't piping
output from echo
to echo
work?