因此,我想检查文件是否存在,但以这种方式

if [ -e "out/head/tnt-*/output.log" ]
then
    echo "FILE IS THERE"

else
    echo "NOT THERE"
fi

即使文件存在,它也将转到其他条件,除非我更改
tnt-* to tnt-14

我想保留它tnt-*因为对于一些自动化运行,它可以tnt-13,tnt-10或tnt-14。
有人能推荐另一种检查文件的方法吗?

最佳答案

删除引号以启用shell扩展:

if [ -e out/head/tnt-*/output.log ]
then
  echo "FILE IS THERE"
else
  echo "NOT THERE"
fi

10-06 11:13