databasesqliteterminalcommandcommand-prompt

Is there a command to clear screen in SQLite3?


To clear the SQLite console screen I tried cls, .cls, cls; and .cls; but no luck. Is there no cls command in SQLite?


Solution

  • 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.