最佳答案
for i in $(ls);do
if [ $i = '*.java' ];then
echo "I do something with the file $i"
fi
done
我想循环遍历当前文件夹中的每个文件,并检查它是否匹配特定的扩展名。上面的代码不起作用,你知道为什么吗?