linux中if[[ $file == r* ]]的空格
Posted 牵牛花
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux中if[[ $file == r* ]]的空格相关的知识,希望对你有一定的参考价值。
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前面必须加上分号;
以上是关于linux中if[[ $file == r* ]]的空格的主要内容,如果未能解决你的问题,请参考以下文章