Micah Carrick wrote:
Hello,
I wanted to be able to redirect the output of avrdude to a file but it
does not work... why is this?
avrdude -p m8 -c avrusb500 -e -U flash:w:toggle_led.hex >
avrdude_output.txt
Most of the output is sent to the stderr stream. So you can redirect the
stderr stream to the stdout stream, and then redirect that to a file:
... 2>&1 > avrdude_output.txt
HTH
--
Eric Weddington
_______________________________________________
avrdude-dev mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/avrdude-dev