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.

9 lines
206 B

# 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