Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save WooodHead/8876a86c36f4b70f157c4df0b55fc9cd to your computer and use it in GitHub Desktop.
Save WooodHead/8876a86c36f4b70f157c4df0b55fc9cd to your computer and use it in GitHub Desktop.
Import multiple json files into mongoDB
ls -1 *.json | while read jsonfile; do mongoimport -d support -c logs -file $jsonfile --jsonArray -type json; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment