作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这个
if [[ -e file.jpg ]] ;then echo "aaaaaaaaa"; fi
它打印出“aaaaaaa”
但是如果有file.png或者file.png我也想打印
所以我需要这样的东西
if [[ -e file.* ]] ;then echo "aaaaaaaaa"; fi
但它不起作用我在语法中遗漏了一些东西
谢谢
最佳答案
如果启用 bash 的 nullglob
设置,则模式文件。如果没有此类文件,* 将扩展为空字符串:
shopt -s nullglob
files=(file.*)
# now check the size of the array
if (( ${#files[@]} == 0 )); then
echo "no such files"
else
echo "at least one:"
printf "aaaaaaaaa %s\n" "${files[@]}"
fi
如果您不启用 nullglob,则 files=(file.*)
将生成一个包含一个元素的数组,即字符串“file.*”
关于bash - 检查 bash 中是否至少存在一个文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13084885/
我有 json 数据: { "products": [ { "productId" : 0, "productImg" : "../img/product-ph
我是一名优秀的程序员,十分优秀!