我有一个快速且可能很容易解决的问题。我通过列出目录列表
find ~/me/ -maxdepth 1 -type d -not -name "test1" -and -not -name "test4"
$ find ~/me/ -maxdepth 1 -type d -not -name "test1" -and -not -name "test4"
/home/me/
/home/me/test2
/home/me/test3
我想使用类似的东西:find ~/me/ -maxdepth 1 -type d -not -name "test1" -and -not -name "test4" | xargs rm -rf
,但是 find 显示了:
/home/me root dir。
我正在寻找一种不将其包含在搜索结果中的方法。有什么提示吗?提前致谢。