我是 shell 脚本的新手,我有这个脚本:
#!/bin/bash
path_file_conf=/fullpath/directory/*.conf
if [ -e "$path_file_conf" ];then
echo "Found file"
else
echo "No found file"
fi
即使我在 /fullpath/directory/ 文件夹中有一个 .conf 文件,结果总是“找不到文件”。
我可以知道代码的哪一部分是错误的吗?提前致谢!