发布时间:2012-12-10 14:27:36
一.概要 1.if与[之间要有空格 2.[]与判断条件之间也必须有空格 3.]与;之间不能有空格 二.对字符串的判断 1.if [ str1=str2 ];then fi ----当两个字符串相同时返回真 2.if [ str1!=str2 ];then fi ----当两个字符串不相等时返回真 3.if [ -n str1 ];then fi ----当字符串的长度大于0时返回真 (判断变量是否有值) 4.if [ -z str1 ];then fi ......【阅读全文】