删除无效软连接 发表于 2019-06-17 | 更新于 2020-06-02 | 分类于 scripts 删除无效软连接新建如下shell脚本soft_link_clean.sh 123456789101112131415161718#! /bin/bashecho "enter scan path: "read pathif [ -z $path ]then echo "please enter scan path" exitfifor file in $(find $path -type l)do if [ ! -e $file ] then echo "rm $file" rm -f $file fidone 执行bash soft_link_clean.sh后输入需要清除的文件夹路径即可。