如何在 MongoDB 中清除控制台

在使用 Mongodb 控制台或 shell 时,有时我的屏幕上会有很多我不需要的输出。那么,MongoDB 中有清除控制台的函数吗?

类似于 MatLab 中的 clear。

我试过 clcclear,但没有成功。

36762 次浏览

根据 吉拉判断,他们已经做到了: 您需要在 shell 中编写 cls

你也可以使用热键: CTRL + L

在 macOS 中: Command + K

查看 shell 给你的更多热键。

如果您正在使用 MongoDB 2.0或更高版本,mongo shell 支持两者:

  • cls指令
  • Ctrl+l(透明屏幕)

Note that both of these clear the screen and put the cursor at the top .. but you can still scrollback to see previous history.

在 OS X Terminal. app 中,你还可以:

  • Command+K(清晰回滚)

清除屏幕和/或回滚缓冲区与历史记录无关,因此您仍然可以向上/向下游标来运行以前的命令。