[ Linux ] 删除所有的 cdslck 文件
https://www.cnblogs.com/yeungchie/
- code
在 terminal 中运行。
find . -name "*cdslck*" -exec rm -f {} \;
- 更简单的方法
rm `find . -name "*cdslck*"`
- describe
删除当前路径及以下文件夹层次中的所有名称包含cdslck
的文件。
https://www.cnblogs.com/yeungchie/
find . -name "*cdslck*" -exec rm -f {} \;
rm `find . -name "*cdslck*"`
cdslck
的文件。