notebook生成版本时遇到"项目中存在失效的软连接, 影响版本生成,请先删除软连接再尝试生成版本"
求助各位大佬,怎么确定哪个目录存在失效的软链接呢
谢谢,非常有用。
for a in `find . -type l` do stat -L $a >/dev/null 2>/dev/null if [ $? -gt 0 ] then rm $a fi done
https://blog.csdn.net/Augusdi/article/details/43303993?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param
谢谢,非常有用。
https://blog.csdn.net/Augusdi/article/details/43303993?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param