shell判断文件后缀
时间: 2023-03-20 13:09:25 浏览: 265
用来查看文件后缀名工具
4星 · 用户满意度95%
可以使用shell脚本中的if语句和通配符来判断文件后缀。例如:
```
if [ ${file##*.} = "txt" ]; then
echo "This is a text file."
fi
```
其中,`${file##*.}`表示取文件名中最后一个点(即文件后缀)后面的字符串,然后与“txt”进行比较。如果相等,则输出“This is a text file.”。
阅读全文