Skip to content

Instantly share code, notes, and snippets.

@shsunmoonlee
Created January 7, 2019 08:18
Show Gist options
  • Select an option

  • Save shsunmoonlee/0945f91afd6b9793640abbb37bcbdacb to your computer and use it in GitHub Desktop.

Select an option

Save shsunmoonlee/0945f91afd6b9793640abbb37bcbdacb to your computer and use it in GitHub Desktop.
import multiple json files from the folder in linux, mac for mongodb using mongoimport
cd jsonfilesfolder
ls -1 *.json | while read jsonfile; do mongoimport -d shop --file $jsonfile --type json; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment