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.
我正在考虑使用 inotifywait 来查看原始文件夹所在的原始文件夹,然后每当它检测到一个文件夹已被删除时,然后删除另一个文件夹中的相同符号链接。
所以我的问题是,这是最好的方法吗?或者当原始文件夹被删除时,是否有更好的方法来删除符号链接?
我没用过inotify,不过如果能集成*nix的find命令,可以用它来删除链接
find /folderpath -type l -delete