To clear the SQLite console screen I tried cls
, .cls
, cls;
and .cls;
but no luck. Is there no cls
command in SQLite?
To execute CLS
command in the SQLite3 shell you need to do this: .shell cls
As simple as that, .shell args...
allows you to execute CMD commands in the SQLite3 shell.