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

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

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

你可能感兴趣的:(shell 中判断软链文件是否存在)