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.
フォルダ内のすべてを削除し、特定のフォルダとファイルを除外するにはどうすればよいですか?
(例として tar: tar --exclude="folder")。
tar --exclude="folder"
編集:ファイルとフォルダーを削除できます。
注: 次のコマンドは慎重に実行してください。
find . -type 'f' | grep -v "NameToExclude" | xargs rm find . -type 'd' | grep -v "NameToExclude" | xargs rmdir