在执行时
cat test.txt | java myfile > test1.txt 2> test2.txt
我收到错误“输出重定向不明确。”
我的 java 文件包含 System.out 和 System.err 。
我在Unix csh环境中。
答案1
在 unix tcsh 环境中得到它我可以按如下方式运行:
(cat test.txt | java myfile > test1.txt) >& test2.txt
在执行时
cat test.txt | java myfile > test1.txt 2> test2.txt
我收到错误“输出重定向不明确。”
我的 java 文件包含 System.out 和 System.err 。
我在Unix csh环境中。
在 unix tcsh 环境中得到它我可以按如下方式运行:
(cat test.txt | java myfile > test1.txt) >& test2.txt