- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2011-03-04 12:48 编辑
改成
if [ $count > $gap_count ]
后总是输出FAIL结果,明明结果是pass但还是输出FAIL, 搞不懂是为什么。 ...
MicoCN 发表于 2011-03-04 12:29 ![]()
for number
# if [ 3 -gt 5 ]; then echo yes; else echo no; fi
no
the ">" is redirection sign (special sign and usally be true)
# if [ 3 > 5 ]; then echo yes; else echo no; fi
yes
# if [ 5 > 3 ]; then echo yes; else echo no; fi
yes
and creat the file name for 3 and 5
# ls -l 3 5
-rw-r--r-- 1 root root 0 Mar 4 12:28 3
-rw-r--r-- 1 root root 0 Mar 4 12:23 5
for string
# if [ 3 \> 5 ]; then echo yes; else echo no; fi
no
# if [ 3 \> 15 ]; then echo yes; else echo no; fi
yes |
|