Any way to extend the console history in Magic / s...
# magic
w
Any way to extend the console history in Magic / save an antenna check directly to file? My antenna check results are going past the console history buffer
t
My usual solution to this is to run magic in batch mode; e.g.,
Copy code
magic -dnull -noconsole [arguments] << EOF
[commands]
EOF
and then redirect stdout/stderr to a file (-noconsole is the main thing, as it outputs directly to the terminal instead of to the Tk console). That said, the
antennacheck
command should have an optional file argument to save to, like some other commands have (such as 'feedback').