温馨提示×

shell if判断文件是否存在

小樊
87
2024-06-17 15:24:54
栏目: 编程语言

可以使用以下命令来判断文件是否存在:

if [ -e /path/to/file ]; then
  echo "File exists"
else
  echo "File does not exist"
fi

这个命令中,-e参数用来判断文件是否存在,/path/to/file是要判断的文件路径。如果文件存在,则输出"File exists",否则输出"File does not exist"。

0