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 . -maxdepth 1 -type l
您可以将其与rm:
rm
rm `find . -maxdepth 1 -type l`
参考这个
如果你有勇气,试试这个——
find $dirPath -type l | xargs rm -f