|
|||||
operator | is greater-than, > | ||||
Related Syntax |
Summary |
Boolean
The result is true if the first expression is greater than the second, and false otherwise. Using the keyword |
expression1 (is greater-than | >) expression2
Logical test to determine if one expression is greater than another. Can also be identified by the punctuation operator >
. is greater-than
can be used with string expressions as well as numeric expressions.
isnt greater-than
can also be identified by the punctuation operator =<
.
isnt greater-than
has the same usage as is less-equal
.
For example:
do when a > b ... done
Related Syntax is less-equal |
---- |