文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

shell脚本怎样判断文件是否存在

2023-06-07 09:30

关注
目录

shell脚本判断文件是否存在

在进行linux系统相关应用程序开发时,少不了要书写一些shell脚本,有时候要用到判断文件或者目录是否存在的脚本,本文笔者做一下笔记,已备后查。

shell判断文件是否存在的脚本如下:

//[ 与 ] 的前后必须有空格符
if [ -f /path/file.ext ] 
then 
     echo "The file exist"
else
     echo "The file doesn't exist"
fi
//判断某链接是否存在
if [ -L /path/link ] 
then 
    echo "The link exist"
else
    echo "The link doesn't exist"
fi

其实shell对于文件册测试有好几种选项开关

现在例举如下:

表达式测试含义
-a filepathfile exists. all files type
-b filepathfile exists and is a block special file.
-c filepathfile exists and is a character special file.
-d filepathfile exists and is a directory.
-e filepathfile exists (等同于 -a).
-f filepathfile exists and is a regular file.
-g filepathfile exists and has its setgid(2) bit set.
-G filepathfile exists and has the same group ID as this process.
-k filepathfile exists and has its sticky bit set.
-L filepathfile exists and is a symbolic link.
-n filepathstring length is not zero.
-o filepathNamed option is set on.
-O filepathfile exists and is owned by the user ID of this process.
-p filepatfile exists and is a first in, first out (FIFO) special file ornamed pipe.
-r filepathfile exists and is readable by the current process.
-s filepathfile exists and has a size greater than zero.
-S filepathfile exists and is a socket.
-t filepathfile descriptor number fildes is open and associated with aterminal device.
-u filepathfile exists and has its setuid(2) bit set.
-w filepathfile exists and is writable by the current process.
-x filepathfile exists and is executable by the current process.

shell脚本之文件是否存在、权限校验

判断目录是否存在

#判断目录是否存在,判断非加!号, [ ! -d '/home' ]
if [ -d '/home' ]
then
 echo "目录/home存在=========="
else
 echo "目录/home不存在========="
fi

判断文件是否存在

#判断文件是否存在
if [ -f '/home/docker.log' ]
then
 echo "文件/home/docker.log存在============="
else
 echo "文件/home/docker.log不存在==========="
fi

判断目录/文件是否存在

#判断文件是否存在,目录或文件存在都成立
if [ -e '/home' ]
then
 echo "/home存在=============="
else
 echo "/home不存在============"
fi

判断文件权限

#检测文件是否可读 -r ,可写 -w ,可执行 -x
if [ -r '/home/script/file.log' ]
then
 echo "文件/home/script/file.log存在并可读=============="
else
 echo "目录/home/script/file.log不存在或不可读=================="
fi

判断文件是否属于当前用户

#检测文件是否属于当前用户
file_path=/home/script/file.log
if [ -O $file_path ]
then
 echo "文件$file_path属于当前用户================="
else
 echo "文件$file_path不属于当前用户==============="
fi

判断文件是否与当前用户相同用户组

#检测文件是否存在,并且默认组与当前用户相同
file_path=/home/script/file.log
if [ -G $file_path ]
then
 echo "文件$file_path所属组与当前用户相同================="
else
 echo "文件$file_path所属组与当前用户不相同================"
fi

比较文件之间是否为新建

#检测文件file1是否比file2新
file1=/home/script/file.log
file2=/home/script/file_1.log
if [ $file1 -nt $file2 ]
then
 echo "文件$file1比文件$file2新=============="
fi
if [ $file1 -ot $file2 ]
then
 echo "文件$file1比文件$file2旧==============="
fi

复合条件判断文件

#判断既是文件 又 可读 ,用 && ,或用 ||
file=/home/script/file.log
if [ -f $file ] && [ -r $file ]
then
    echo "文件$file是文件,并且可读============="
fi

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持我们。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-人工智能
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯