Reputation:
While using Mongodb console or shell sometimes my screen is cluttered with a lot of previous output which I do not need. So, is there a function to clear console in MongoDB?
Something like an analog of clear in MatLab.
I have tried clc
, clear
but with no success.
Upvotes: 85
Views: 42108
Reputation: 1
Ways to clear the mongoDB shell screen :
cls
commandctrl + L
console.clear()
methodyou can use any of this method to clear mongoDB shell screen.
Although you can run your previous commands or queries by using up/down keyboard keys.
Upvotes: 0
Reputation: 222531
Judging by Jira they have done it: You need to write cls
in the shell.
You can also use a hotkey: CTRL + L.
In macOS: Command + K.
Check more hotkeys for the shell here.
Upvotes: 158
Reputation: 65323
If you are using MongoDB 2.0 or higher, the mongo
shell supports both:
cls
commandCtrl+l
(clear screen)Note that both of these clear the screen and put the cursor at the top .. but you can still scrollback to see previous history.
In OS X Terminal.app you can also do:
Command+K
(clear scrollback)Clearing the screen and/or scrollback buffer are independent of the history, so you can still cursor up/down to run previous commands.
Upvotes: 70