based on some system arch, i may need to update multiple collection under some name rule, e.g. [m_aaaa_info], [m_aaab_info] .etc
thus i may need to update all the collections named by [m_*_info], with the same select & update conditions like update({"isDeleted": false}, {$set:{"isDeleted": false}})
so, is there any tool/commend can do this operations? e.g. db.getCollection('m_*_info').update({"isDeleted": false}, {$set:{"isDeleted": false}}, upset=false, multi-update=true)