美文网首页
shell 中判断软链文件是否存在

shell 中判断软链文件是否存在

作者: 李守俊 | 来源:发表于2020-02-12 00:06 被阅读0次

    判断家目录下是否有名为 codes 的软链,如果不存在则创建。

        lnpath="${HOME}/codes"
        if [ -L  "$lnpath" ];then
          echo 'has lnpath rm now'
          rm $lnpath;
        fi
        ln -s `pwd` $lnpath
    

    相关文章

      网友评论

          本文标题:shell 中判断软链文件是否存在

          本文链接:https://www.haomeiwen.com/subject/qqzffhtx.html