-1

here is what my .bat file looks like:

cd C:\cygnus\cygwin-b20\H-i586-cygwin32\bin
g++ -g hello.cpp -o hello -lm
start hello.exe 

I need the results of hello.exe written to text file. Can you help me ?

4

2 回答 2

1

hello > output.txt 2>&1

将捕获标准输出 (1) 和标准错误 (2) 并将它们发送到 output.txt。

在“批处理文件管道结果到文本文件”上的快速 Google 搜索会将您带到此页面

于 2013-08-13T16:23:40.547 回答
0

如果你是windows,安装Cygwin,然后运行

hello > file.txt

应该工作(如评论中所述)

于 2013-08-13T16:19:10.033 回答