通过shell脚本对MongoDB进行自动化操作
运行写好的 ./show.sh 脚本 发现能够建立mongo链接,但是第二条开始就无法运行了
脚本内容如下
#!/bin/sh mongo WordPress show collections db.posts.find().limit(10)
不知道是什么原因呢?
认证0级讲师
À partir du deuxième élément se trouve l'instruction mongo shell, qui bien sûr ne peut pas être exécutée.
Ça devrait être comme ça :
#!/bin/sh mongo WordPress --eval "show collections;db.posts.find().limit(10);"
Ou utilisez mongo comme analyseur de shell :
#!/usr/bin/env mongo WordPress show collections db.posts.find().limit(10)
- -# Pour écrire du js, utilisez ./mongo /path/to/test.js
À partir du deuxième élément se trouve l'instruction mongo shell, qui bien sûr ne peut pas être exécutée.
Ça devrait être comme ça :
Ou utilisez mongo comme analyseur de shell :
- -# Pour écrire du js, utilisez ./mongo /path/to/test.js