我正在bash中编写夜间构建脚本。 一切都很好,除了一个小障碍:
#!/bin/bash
for file in "$PATH_TO_SOMEWHERE"; do
if [ -d $file ]
then
# do something directory-ish
else
if [ "$file" == "*.txt" ] # this is the snag
then
# do something txt-ish
fi
fi
done;
我的问题是确定文件扩展名,然后进行相应的操作。我知道问题在if语句中,测试txt文件。
如何确定文件后缀为。txt ?