Tag: shongodb

如何通过shell脚本执行mongo命令?

我想在shell脚本中执行mongo命令。 我尝试下面的方式test.sh #!/bin/sh mongo myDbName db.mycollection.findOne() show collections 当我执行上面的脚本./test.sh 然后build立了mongo连接,但是下一个命令没有执行 如何通过sh脚本执行其他命令[test.sh]? 请帮帮我