avrdude and stdout

If you've got access to the avrdude source, the following should make all output go to stdout. You will of course need to re-compile.

#!/bin/csh
foreach a (`ls *.c`)
mv $a $a.old
sed -e 's/stderr/stdout/g' $a.old > $a
end