重定向 - 为什么它不能这样工作
我知道运行时有3个流附加到进程,即输入,输出和错误流。 并且重定向执行从左到右。 我打算执行一个命令,将其输出流重定向到一个文件,并将其错误流重定向到同一个文件。 - nofile不存在,text1文件确实存在 head nofile text1 1> output.txt 2> output.txt -- I know this won't work. head nofile text1 1> output.txt 2>&1 -- while this will work, passing the error stream to the output ste q1)为什么? 如果它是“假设以这种方式编写”的问题,那么为什么下面的工作也不能 head nofile text1 2>&1 1> output.txt head nofile text1 2>&1> output.txt …