- Reference >
- MongoDB Package Components >
bsondump
bsondump¶
Synopsis¶
The bsondump converts BSON files into human-readable
formats, including JSON. For example, bsondump is useful
for reading the output files generated by mongodump.
Important
bsondump is a diagnostic tool for inspecting
BSON files, not a tool for data ingestion or other application use.
Options¶
-
bsondump¶
-
--help¶ Returns a basic help and usage text.
-
--verbose,-v¶ Increases the amount of internal reporting returned on the command line. Increase the verbosity with the
-vform by including the option multiple times, (e.g.-vvvvv.)
-
--objcheck¶ Validates each BSON object before outputting it in JSON format. Use this option to filter corrupt objects from the output. This option has some performance impact.
-
--filter'<JSON>'¶ Limits the documents that
bsondumpexports to only those documents that match the JSON document specified as'<JSON>'. Be sure to include the document in single quotes to avoid interaction with your system’s shell environment.