当我们编译C程序时,输出存储在a.out中.我们如何将编译后的输出重定向到另一个文件?
大多数C编译器-o为此提供了选项,例如:
-o
gcc -o gentext gentext.c cc -o mainprog -Llib -lmymath firstbit.c secondbit.o xlc -o coredump coredump.c
-ofilename将filename代替a.out.
-ofilename
filename
a.out
根据手册:
-o Place the output into