May 2000
Beginner
761 pages
18h 20m
English
Comparison expressions match lines where the action is performed if the condition is true. These expressions use relational operators and are used to compare numbers or strings. Table 6.1 provides a list of the relational operators. The value of the expression is 1 if the expression evaluates true, and 0 if false.
| Operator | Meaning | Example |
|---|---|---|
| < | Less than | x < y |
| <= | Less than or equal to | x <= y |
| == | Equal to | x == y |
| != | Not equal to | x != y |
| >= | Greater than or equal to | x >= y |
| > | Greater than | x > y |
| ~ | Matched by regular expression | x ~ /y/ |
| !~ | Not matched by regular expression | x !~ /y/ |
(The Database) % cat employees Tom Jones 4423 ... |
Read now
Unlock full access