4

私は問題を解決するのが迅速でおそらく簡単です。経由でディレクトリリストをリストしていました

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、しかし、検索結果は /home/me root dirを示しています。

検索結果に表示されないようにする方法を探していました。ヒントはありますか?前もって感謝します。

4

1 に答える 1