Skip to content

DOCS-1274 fix mongodump, DOCS-454 add version to homepage #764

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions source/index.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
:orphan:

==================
The MongoDB Manual
==================
============================
The MongoDB |version| Manual
============================

.. default-domain:: mongodb

Expand Down
10 changes: 6 additions & 4 deletions source/reference/mongodump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,11 @@ Options

.. option:: --out <path>, -o <path>

Specifies a path where :program:`mongodump` and store the output
the database dump. To output the database dump to standard output,
specify a ``-`` rather than a path.
Specifies a directory where :program:`mongodump` will save the output
of the database dump. To output the database dump to standard output,
specify a ``-`` rather than a path.
By default, :program:`mongodump` will save output files in a
directory named ``dump`` in the current working directory.

.. option:: --query <json>, -q <json>

Expand Down Expand Up @@ -256,4 +258,4 @@ authenticating using the username ``user`` and the password

.. code-block:: sh

mongodump --host mongodb1.example.net --port 37017 --username user --password pass /opt/backup/mongodump-2011-10-24
mongodump --host mongodb1.example.net --port 37017 --username user --password pass --out /opt/backup/mongodump-2011-10-24