标签: mongodb shell
在Mongodb shell中,我可以运行:
cls <enter> db.test.find() <enter>
在两条单独的行上清除屏幕,然后查看find()的结果。
有没有办法在一条线上做到这一点?我试过了:
cls; db.test.find() <enter> cls & db.test.find() <enter> (cls); db.test.find() <enter>
这些都不起作用。