当前位置: 技术问答>linux和unix
gcc程序怎么不能将输出重定向到文件或管道呀,你们有这个问题吗?
来源: 互联网 发布时间:2015-01-06
本文导语: gcc程序怎么不能将输出重定向到文件或管道呀,你们有这个问题吗? | gcc test.c -o test gcc test.c -o test 1>yourlogfile 2>&1 | gcc test.c -o test > okfile gcc test.c -o test 2> errfile ...
gcc程序怎么不能将输出重定向到文件或管道呀,你们有这个问题吗?
|
gcc test.c -o test
gcc test.c -o test 1>yourlogfile 2>&1
gcc test.c -o test 1>yourlogfile 2>&1
|
gcc test.c -o test > okfile
gcc test.c -o test 2> errfile
gcc test.c -o test 2> errfile