Linux下删除大量文件

直接用rm * -f 会报错,改用

ls |xarg rm -f 

就可以了

原文地址:https://www.cnblogs.com/swordzj/p/12319710.html