🗃️ add a shell script to import data

import data to mongodb
master
ourfor 6 years ago
parent af01c20013
commit 2f488ec2cd
No known key found for this signature in database
GPG Key ID: 5E6DC0734B673AB7

@ -0,0 +1,8 @@
# author: ourfor
# description: import data to mongodb
# date: 20191030
for i in `ls | grep '[.]json$'`;
do
echo $i | awk 'BEGIN{FS="."}{print $1}'|xargs -I % mongoimport -d test -c % --file %.json
done
Loading…
Cancel
Save