shell 中判断软链文件是否存在
2020-02-12 本文已影响0人
李守俊
判断家目录下是否有名为 codes 的软链,如果不存在则创建。
lnpath="${HOME}/codes"
if [ -L "$lnpath" ];then
echo 'has lnpath rm now'
rm $lnpath;
fi
ln -s `pwd` $lnpath
判断家目录下是否有名为 codes 的软链,如果不存在则创建。
lnpath="${HOME}/codes"
if [ -L "$lnpath" ];then
echo 'has lnpath rm now'
rm $lnpath;
fi
ln -s `pwd` $lnpath