ls $usridir/$line | while read file do if [[ $file==access.log.* ]] then echo $file "hahahah" fi done
[[email protected] study]$ ./t.sh
access.log.1 hahahah
test1.sh hahahah
t.sh hahahah
这个结果就不对,因为[[]]中的等号两端没有空格!,加上空格就对了
还有if后面必须有空格,then要和if在同一行then前面必须加上分号;
时间: 2024-10-07 11:07:29