字符串比较-UNIX初级教程

时间:2024-05-12 12:27:07
【文件属性】:

文件名称:字符串比较-UNIX初级教程

文件大小:1.01MB

文件格式:PPT

更新时间:2024-05-12 12:27:07

UNIX

字符串比较 test string1 字符串比较操作符 string2 字符串比较操作符(两边加空格!) : = string1 = string2 是否匹配 != string1 != string2 是否不匹配 -n -n string 长度非0 -z -z string 是否空串 例17:test时钟比较 $DATE1=`date` $DATE2=`date` $if test “$DATE1” = “$DATE2” >then >echo “STOP! The computer clock is dead!” >else >echo “Everything is fine.” >fi Everything is fine. $


网友评论