如何将标准输出和错误输出同时重定向到同一位置?

方法一:
2>&1 (# ls /usr/share/doc > out.txt 2>&1 )

方法二:
&> (# ls /usr/share/doc &> out.txt )
原文地址:https://www.cnblogs.com/sea-stream/p/12003105.html