删除每一行中特定的内容

:%s/<regex>//g

统计每一行内容的重复次数,然后从多到少排序

:%!sort | uniq -c | sort -nr

删除不包含特定内容的行

:v/<regex>/d