|
From: | Eric Weddington |
Subject: | Re: [avrdude-dev] Cannot redirect avrdude output |
Date: | Wed, 08 Mar 2006 10:02:44 -0700 |
User-agent: | Mozilla Thunderbird 1.0.2 (Windows/20050317) |
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
[Prev in Thread] | Current Thread | [Next in Thread] |