Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一部を除いて、指定された日付よりも古いパス内のすべてのディレクトリをbashで削除する必要があります。
削除してはいけないディレクトリの名前を知っています。
を使用しfindます。少なくとも FreeBSD で動作するはずの例を次に示します。
find
find . -type d -not -newerct 'x days ago' -not -name dir1 -not -name dir2 -delete