Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wwymak/73dc2240c3c60eb9a53539cf429860b7 to your computer and use it in GitHub Desktop.
Save wwymak/73dc2240c3c60eb9a53539cf429860b7 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