如何删除文件夹及其子文件夹内的符号链接?

如何删除文件夹及其子文件夹内的符号链接?

我有一个包含符号链接的文件夹。这些符号链接会导致我的 encfs 设置出现问题。我想从此文件夹及其子文件夹中删除所有符号链接。我该怎么做?

答案1

只需使用find

 find path/to/your/folder -maxdepth 2 -type l -delete

-type l仅查找符号链接,请参阅man find。要定义在目录树中查找的深度,请使用该-maxdepth选项。

相关内容