Created
January 7, 2019 08:18
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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