using a mongo script from inside the javascript shell?
I know how to run a mongodb script from the command line and then enter the shell. E.g.,
mongo --shell dbname dbnameinit.js
But once I'm inside the shell, can I开发者_JS百科 execute another script? Anything like db.dbname.load("anotherscript.js")???
Thanks! -- ge
Use: load("anotherscript.js")
精彩评论