标签:bsp while 没有 pre min linux file 结果 read
ls $usridir/$line | while read file do if [[ $file==access.log.* ]] then echo $file "hahahah" fi done
[hadoop@mini2 study]$ ./t.sh
access.log.1 hahahah
test1.sh hahahah
t.sh hahahah
这个结果就不对,因为[[]]中的等号两端没有空格!,加上空格就对了
还有if后面必须有空格,then要和if在同一行then前面必须加上分号;
标签:bsp while 没有 pre min linux file 结果 read
原文地址:http://www.cnblogs.com/rocky-AGE-24/p/6882443.html