我认为这是一个非常简单的问题,但我对命令行的经验较少。我有一个想要运行的旧 C 程序。它显示以下文本:
/* This is a stand-alone program intended to generate ... It is called*/
/* as follows: */
/* */
/* tw_r2fft N > outputfile.c */
/* This program will generate the ... array 'w' */
/* and output the result to the display. Redirect the */
/* output to a file as shown above. */
我试过(在cmd中):
gcc tw_r2fft.c 1024 > outputfile.c
gcc 的错误信息是:
gcc: 1024: No such file or directory
我尝试了一些变化,但没有成功。
- 什么是正确的方法?
- 我在哪里可以找到 cmd 的一般描述 - 以避免下次在 stackoverflow 出现问题?(我查看了http://gcc.gnu.org/onlinedocs/gcc-4.8.1/gcc/但没有有效地找到答案)