commit 2046778bc915fcbad8b8a9354febcc0b9ccdf683 parent 18fbd4606c77fcd155814cb3f8097314532460de Author: sin <sin@2f30.org> Date: Mon, 11 Nov 2013 11:46:53 +0000 Update manpage for binary operations in test(1) Diffstat:
M | test.1 | | | 28 | ++++++++++++++++++++++++++++ |
1 file changed, 28 insertions(+), 0 deletions(-)
diff --git a/test.1 b/test.1 @@ -67,3 +67,30 @@ FILE exists and execute (or search) permission is granted .TP .B \-z STRING the length of STRING is zero +.TP +.B s1 = s2 +True if the strings s1 and s2 are identical +.TP +.B s1 != s2 +True if the strings s1 and s2 are not identical +.TP +.B s1 +True if s1 is not the null string +.TP +.B n1 -eq n2 +True if the integers n1 and n2 are equal +.TP +.B n1 -ne n2 +True if the integers n1 and n2 are not equal +.TP +.B n1 -gt n2 +True if the integer n1 is greater than the integer n2 +.TP +.B n1 -ge n2 +True if the integer n1 is great than or equal to the integer n2 +.TP +.B n1 -lt n2 +True if the integer n1 is less than the integer n2 +.TP +.B n1 -le n2 +True if the integer n1 is less than or equal to the integer n2 +\ No newline at end of file