You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# 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 work -c % --file %.json
|
|
done
|