问个gdb的问题# Programming - 葵花宝典l*c2007-11-02 07:111 楼刚刚开始用感到gdb。我的程序从一个文本文件读输入:cat input.txt > myprogram在gdb里面怎么run?我试了run > output.txt是可以的,但是写cat input.txt > run是肯定不行了。
t*t2007-11-02 07:112 楼first, it'scat input.txt | myprogramsecond, for your situation, you can userun < input.txt(isn't this obvious...)【在 l*****c 的大作中提到】: 刚刚开始用感到gdb。我的程序从一个文本文件读输入:: cat input.txt > myprogram: 在gdb里面怎么run?: 我试了run > output.txt是可以的,但是写cat input.txt > run是肯定不行了。