我想在shell脚本中执行mongo命令,例如在脚本test.sh中:

#!/bin/sh
mongo myDbName
db.mycollection.findOne()
show collections

当我通过./test.sh执行这个脚本时,会建立到MongoDB的连接,但不会执行以下命令。

如何通过shell脚本test.sh执行其他命令?


当前回答

这适用于我在Linux下:

mongo < script.js

mongodb的更新版本

mongosh < script.js

其他回答

——shell标志也可以用于javascript文件

 mongo --shell /path/to/jsfile/test.js 

在我的设置中,我必须使用:

mongo --host="the.server.ip:port" databaseName theScript.js 

mongodb的更新版本

mongosh --host="the.server.ip:port" databaseName theScript.js 

如果您已启用身份验证:

mongo -u username -p password --authenticationDatabase auth_db_name < your_script.js

更新版本

mongosh -u username -p password --authenticationDatabase auth_db_name < your_script.js

下面的shell脚本也很适合我……definite不得不使用Antonin一开始提到的重定向…这让我产生了测试这里文档的想法。

function testMongoScript {
    mongo <<EOF
    use mydb
    db.leads.findOne()
    db.leads.find().count()
EOF
}
mongo db_name --eval "db.user_info.find().forEach(function(o) {print(o._id);})"