菜鸟笔记
提升您的技术认知

linux中shell脚本判断文件或文件夹是否存方法-ag真人游戏

在linux系统中编写脚本时候,常常会碰到需要判断文件或文件夹是否存在的情况。遇到这种情况,你可以通过test命令来检查文件是否存在,并确定文件的类型。

test命令采用以下语法格式:

test expression
[ expression ]
[[ expression ]]

如果你希望你的脚本具有很强的兼容性和可移植性,你可以是由旧的test命令格式[,该命令在所有posix shell上都可用。大多数使用bash、zsh和ksh作为默认shell的现代系统都支持test命令[[(双括号)的新升级版本。

01、检查文件是否存在

当你在shell中需要检查一个文件是否存在时,通常需要使用到文件操作符-e-f。第一个-e用来检查文件是否存在,而不管文件类型。第二个-f仅仅用来检查文件是常规文件(不是目录或设备)时返回true。

当检查文件是否存在时,命令中的操作选项通常将test命令不同格式和if语句结合使用。下面的示例shell代码将检查/etc/resolv.conf文件是否存在。

file=/etc/resolv.conf
if test -f "$file"; then
    echo "$file exist"
fi
file=/etc/resolv.conf
if [ -f "$file" ]; then
    echo "$file exist"
fi
file=/etc/resolv.conf
if [[ -f "$file" ]]; then
    echo "$file exist"
fi

如果你需要通过判断文件是否存在进行不同的操作,只需要使用类似如下if/then格式语句即可。

file=/etc/resolv.conf
if [ -f "$file" ]; then
    echo "$file exist"
else 
    echo "$file does not exist"
fi

在处理文件名称中包含有空格的文件时,请使用双引号避免出现一些处理问题。你也可以在不使用if语句的情况下使用test命令,只有当test命令执行后的结果为true时,跟在test命令&&运算符之后的内容才会被执行。

示例如下:

test -f /etc/resolv.conf && echo "$file exist"
[ -f /etc/resolv.conf ] && echo "$file exist"
[[ -f /etc/resolv.conf ]] && echo "$file exist"

如果要在&&运算符之后运行一系列命令,只需将命令括在用&&分隔的大括号中:

[ -f /etc/resolv.conf ] && { echo "$file exist"; cp "$file" /tmp/; }

&&相反,只有在test命令的exit状态为false时,才会执行||运算符后面的语句。

[ -f /etc/resolv.conf ] && echo "$file exist" || echo "$file does not exist"

02、检查目录是否存在

linux系统中运算符-d允许你测试一个文件是否时目录。

例如检查/etc/docker目录是否存在,你可以使用如下脚本:

file=/etc/docker
if [ -d "$file" ]; then
    echo "$file is a directory"
fi
[ -d /etc/docker ] && echo "$file is a directory"

如果你喜欢你也可以使用双括号[[代替脚本中的单括号[

03、检查文件是否不存在

和其他语言相似,test表达式允许使用!(感叹号)做逻辑not运算,示例如下:

file=/etc/docker
if [ ! -f "$file" ]; then
    echo "$file does not exist"
fi
[ ! -f /etc/docker ] && echo "$file does not exist"

04、检查是否存在多个文件

不使用复杂的嵌套if/else构造,您可以使用-a(或带[[&&预算符)来测试是否存在多个文件,示例如下:

if [ -f /etc/resolv.conf -a -f /etc/hosts ]; then
    echo "both files exist."
fi
if [[ -f /etc/resolv.conf && -f /etc/hosts ]]; then
    echo "both files exist."
fi

以下脚本语句为不使用if语句等效语句:

[ -f /etc/resolv.conf -a -f /etc/hosts ] && echo "both files exist."
[[ -f /etc/resolv.conf && -f /etc/hosts ]] && echo "both files exist."

05、文件test命令运算符

test命令包含以下文件操作运算符,这些运算符允许你测试不同类型的文件:

  • -b file - 如果文件存在并且是块特殊文件,则为true。
  • -c file - 如果文件存在并且是特殊字符文件,则为true。
  • -d file - 如果文件存在并且是目录,则为true。
  • -e file - 如果文件存在并且是文件,则为true,而不考虑类型(节点、目录、套接字等)。
  • -f file - 如果文件存在并且是常规文件(不是目录或设备),则为true。
  • -g file - 如果文件存在并且与运行命令的用户具有相同的组,则为true。
  • -h file - 如果文件存在并且是符号链接,则为true。
  • -g file - 如果文件存在并已设置组id(sgid)标志,则为true。
  • -k file - 如果文件存在并设置了粘滞位标志,则为true。
  • -l file - 如果文件存在并且是符号链接,则为true。
  • -o file - 如果文件存在并且由运行该命令的用户拥有,则为true。
  • -p file - 如果文件存在并且是管道,则为true。
  • -r file - 如果文件存在且可读,则为true。
  • -s file - 如果文件存在并且是套接字,则为true。
  • -s file - 如果文件存在且大小不为零,则为true。
  • -u file - 如果文件存在并且设置了(suid)标志,则为true。
  • -w file - 如果文件存在且可写,则为true。
  • -x file - 如果文件存在且可执行,则为true。

06、写在最后

在本教程中,我们向您展示了如何在linux系统中使用shell检查文件或目录是否存在。 如果您有任何问题或反馈,请随时留言。

网站地图