标签: mongodb backup mongodump mongorestore
我正在备份特定集合的数据库迁移,但是我仍然需要一些东西来帮助我替换翻转数据库中可能存在的数据,这是我正在使用的查询:
file="listOfBackupFiles.txt" while IFS= read -r line do # display $line or do somthing with $line mongorestore --archive="$line" --gzip done <"$file"