美文网首页
shell 判断文件夹是否存在及创建

shell 判断文件夹是否存在及创建

作者: 数据小新手 | 来源:发表于2020-02-28 21:06 被阅读0次

    判断文件夹是否存在及创建

    if [ ! -d "${shell_log_path}" ];then
    # -p 创建多级目录
    mkdir -p ${shell_log_path}
    echo "$shell_log_path create success"
    else
    echo "$shell_log_path exist"
    fi
    

    相关文章

      网友评论

          本文标题:shell 判断文件夹是否存在及创建

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