Skip to content

Instantly share code, notes, and snippets.

@nidate
Created January 6, 2015 03:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nidate/6d07d1c757428159fc36 to your computer and use it in GitHub Desktop.
Save nidate/6d07d1c757428159fc36 to your computer and use it in GitHub Desktop.
mongoDBでcollectionの一覧を取得する #一行野郎
mongo dbname --quiet --eval 'db.getCollectionNames().sort().join("\n")'
# mongo shellの 'show collections' はJavaScriptの命令ではないので、evalに渡せない。
# http://docs.mongodb.org/manual/reference/mongo-shell/#administrative-command-helpers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment