• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    linux shell之通过标识测试文件系统属性的方法示例

    1 通过标识测试文件系统属性

    2 代码测试

    #/bin/bash
    fpath="/home/chenyu/Desktop/linux/dabian/shell/1.txt"
    #fdir="/home/chenyu/Desktop/linux/dabian/shell/back"
    fdir="./back"
    fexe="./file.sh"
    #判断是否为文件
    if [ -e $path ];
    then
     echo "file "${fpath}" exist";
    else
     echo "file "${fpath}" dose not exist"
    fi
    #判断是否为目录
    if [ -d $fdir ];
    then
     echo "dictionary "${fdir}" exist";
    else
     echo "dictionary "${fdir}" dose not exist"
    fi
    #判断是否为可执行文件
    if [ -x $fexe ];
    then
     echo ${fexe}" can exec"
    else
     echo ${fexe}" can not exec"
    fi

    3 运行结果

    file /home/chenyu/Desktop/linux/dabian/shell/1.txt exist
    dictionary ./back exist
    ./file.sh can exec

    总结

    以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

    您可能感兴趣的文章:
    • 解析linux或android添加文件系统的属性接口的方法
    • python修改linux中文件(文件夹)的权限属性操作
    • linux中crw brw lrw等等文件属性是什么
    • linux 查看文件的属性(ls,lsattr,file,stat)实例详解
    • 浅谈linux rwxrwxrwt文件夹属性
    • Linux文件基本属性知识点总结
    上一篇:linux shell中if的各种判断
    下一篇:使用shell脚本来给mysql加索引的方法
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    linux shell之通过标识测试文件系统属性的方法示例 linux,shell,之,通过,标识,