Ich habe mir einen eleganteren Weg ausgedacht, um ALLE Sammlungen automatisch zu importieren:
ls -1 *.json | sed 's/.json$//' | while read col; do
mongoimport -d db_name -c $col < $col.json;
done
Ich hoffe, das ist hilfreich.
Ich habe mir einen eleganteren Weg ausgedacht, um ALLE Sammlungen automatisch zu importieren:
ls -1 *.json | sed 's/.json$//' | while read col; do
mongoimport -d db_name -c $col < $col.json;
done
Ich hoffe, das ist hilfreich.