标签: mongodb
我想在我的脚本中使用mongodump查询。但是如果查询结果为空,我怎么能跳过一个集合?
mongodump
我的命令就像mongodump -d $db -c $collection -q "{\"timestamp\": {\"\$lt\": $my_timestamp}}"
mongodump -d $db -c $collection -q "{\"timestamp\": {\"\$lt\": $my_timestamp}}"
感谢。
我知道使用find -delete
find -delete
find $mongodump_dir -size 0 -delete
但是如何删除相关的metadata.json文件?
metadata.json
有什么好主意吗?