最佳答案
使用find过滤目录
原文链接:https://www.f2er.com/linux/440810.html$find . -type d -name "img*" -exec rm -rf {} \;
正如在评论中提到的那样,使用shell globs而不是正则表达式.如果你想要正则表达式
$find . -type d -regex "\./img.*" -exec rm -rf {} \;