如何通过shell脚本操作MongoDB
PHP中文网
PHP中文网 2017-04-21 11:16:00
0
3
649

通过shell脚本对MongoDB进行自动化操作

运行写好的 ./show.sh 脚本
发现能够建立mongo链接,但是第二条开始就无法运行了

脚本内容如下

#!/bin/sh
mongo WordPress
show collections
db.posts.find().limit(10)

不知道是什么原因呢?

PHP中文网
PHP中文网

认证0级讲师

reply all(3)
Ty80

Starting from the second item is the mongo shell statement, which of course cannot be run.

It should be like this:

#!/bin/sh
mongo WordPress --eval "show collections;db.posts.find().limit(10);"
洪涛

Or use mongo as a shell parser:

#!/usr/bin/env mongo WordPress
show collections
db.posts.find().limit(10)
PHPzhong

- -# To write js, use ./mongo /path/to/test.js

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template