gpt4 book ai didi

linux - 如何检查文件是否存在但在 shell 脚本的路径中间泛化?

转载 作者:太空宇宙 更新时间:2023-11-04 09:13:23 25 4
gpt4 key购买 nike

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

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

关于linux - 如何检查文件是否存在但在 shell 脚本的路径中间泛化?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51832120/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com