我在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后缀?
@H_404_8@