我想使用搜索多个文件find并使用-exec. 我试过
find
-exec
find ./ -type f -name fileA -o -name fileB -exec rm {} \;
但这似乎只删除文件“fileB”而不是fileAs。
find ×1