一.文本比较
-nt (newer than)判断file1是否比file2新
-ot (older than)判断file1是否比file2旧
-ef 判断file1与file2 是否为同一个文件
eg: test file1 -nt file2
二.数值比较(比较两个整数)
-eq 两个数值相等(equal)
-ne 两个数值不相等(not equal)
-gt n1大于n2(greater than)
-lt n1小于n2(less than)
-ge n1大于等于n2(greater than or equal)
-le n1小于等于n2(less than or equal)