With verbose upload selected the IDE provides the executed avrdude command at the top of the log.
I am interested in copy pasting that avrdude command. However at the end of the upload the command is not available anymore. The IDE only shows some last lines of the log and discard the top part.
Is that log saved anywhere? (I am on ubuntu). Any ideas how I can get that command?
1 Answer 1
If you run the IDE from a terminal you should get the output to STDOUT in your terminal to do with what you want.
arduino | tee cmd.txt
to capture it.