l*****c 发帖数: 1153 | 1 刚刚开始用感到gdb。我的程序从一个文本文件读输入:
cat input.txt > myprogram
在gdb里面怎么run?
我试了run > output.txt是可以的,但是写cat input.txt > run是肯定不行了。 | t****t 发帖数: 6806 | 2 first, it's
cat input.txt | myprogram
second, for your situation, you can use
run < input.txt
(isn't this obvious...)
【在 l*****c 的大作中提到】 : 刚刚开始用感到gdb。我的程序从一个文本文件读输入: : cat input.txt > myprogram : 在gdb里面怎么run? : 我试了run > output.txt是可以的,但是写cat input.txt > run是肯定不行了。
|
|