What command can I use to clear the history that appears in the lower left-hand corner of the Octave IDE?
2 Answers
Based on the documentation for history
, you can use the -c
flag to clear the current history
history -c
The below command will be handy.
clc; history -c
help history
you'll see "'-c' Clear the history list." Also if you google for "gnu octave clear history" the first hit would show you how