Next: Testing/Comparing Numbers
Up: Programming the Shell
Previous: read: Reading Input from
Contents
A common requirement of many programs is to compare two, three, or more things
together.
Strings and numbers may be compared.
Files are often checked for their lengths and/or existence.
All such verifications are done using variants of the test command.
The general usage of test is
test expression
If expression is true, a return code of 0 is supplied.
If expression is false, a non-zero return code is generated.
Subsections
Claude Cantin
2010-10-24