摘要: if [ str1 = str2 ] 当两个串有相同内容、长度时为真 if [ str1 != str2 ] 当串str1和str2不等时为真 if [ -n str1 ] 当串的长度大于0时为真(串非空) if [ -z str1 ] 当串的长度为0时为真(空串) if [ str1 ] 当串st 阅读全文
posted @ 2016-12-06 14:22 Aric.lee 阅读(97060) 评论(2) 推荐(3) 编辑