我有一个可能非常容易begginer问题:我如何从shell脚本回显到stdout和stderr? 我知道我可以回显stderr echo "foo" 1>&2但我需要在两个输出。 我尝试了一些谷歌search,但没有工作。
echo "foo" 1>&2
这应该做到这一点
echo "foo" | tee /dev/stderr