|
|
[ condition ]
if condition ; then action ; else action2 ; fi
if condition ; then action ; elif condition2 ; then action2 ; ... ; fi
if condition ; then action ;
elif condition2 ; then action2 ; ... ;
else action3 ; fi
test condition
[ condition ]
if (condition) action
if condition ; then action ; else action2 ; fi
if condition ; then action ; elif condition2 ; then action2 ; ... ; fi
if condition ; then action ;
elif condition2 ; then action2 ; ... ;
else action3 ; fi
test condition
[ condition ]
In the second form of the utility, which uses [] rather than test, the square brackets must be separate arguments and condition is optional.
test evaluates the condition condition and, if its value is true, sets exit status to 0; otherwise, a non-zero (false) exit status is set; test also sets a non-zero exit status if there are no arguments. When permissions are tested, the effective user ID of the process is used.
All operators, flags, and brackets (brackets used as shown in the second SYNOPSIS line) must be separate arguments to the test command; normally these items are separated by spaces.
Primitives:
The following primitives are used to construct condition:
Operators:
These primaries may be combined with the following operators:
The not-a-directory alternative to the -f option is a transition aid for BSD applications and may not be supported in future releases.
The -L option is a migration aid for users of other shells which have similar options and may not be supported in future releases.
If you test a file you own (the -r -w or -x tests), but the permission tested does not have the owner bit set, a non-zero (false) exit status will be returned even though the file may have the group or other bit set for that permission. The correct exit status will be set if you are super-user.
The = and != operators have a higher precedence than the -r through -n operators, and = and != always expect arguments; therefore, = and != cannot be used with the -r through -n operators.
If more than one argument follows the -r through -n operators, only the first argument is examined; the others are ignored, unless a -a or a -o is the second argument.
The if must appear alone on its input line or after an else. Only one endif is needed, but it is required. The words else and endif must be the first nonwhite characters on a line. Any number of else if ... then ... branching pairs are allowed, but only one else.
With the one-line form of if, there are no else, then, or endif keywords:
For a description of the test built-in, see the ksh.1 sections "Conditional Expressions" and "Arithmetic Evaluation" as well as the (sh) Bourne shell's test built-in above.
[ condition ] evaluates file attributes, string comparisons, and compound "and" or "or" conditions.
The following primaries can be used to construct condition:
These primaries can be combined with the following operator:
The primaries with two elements of the form:
are known as binary primaries. Additional implementation-dependent operators and primary_operator s may be provided by implementations. They will be of the form -operator where the first character of operator is not a digit.
The algorithm for determining the precedence of the operators and the return value that will be generated is based on the number of arguments presented to test. (However, when using the [...] form, the right-bracket final argument will not be counted in this algorithm.)
In the following list, $1, $2, $3 and $4 represent the arguments presented to test.
+ If $1 is a unary primary, exit true if the unary test is true, false if the unary test is false.
+ Otherwise, produce unspecified results.
+ If $1 is !, negate the two-argument test of $2 and $3.
+
Otherwise, produce unspecified results.
+ Otherwise, the results are unspecified.
should be written as:
test "$1" && test "$2"
to avoid problems if a user supplied values such as $1 set to ! and $2 set to the null string. That is, in cases where maximal portability is of concern, replace:
test expr1 -a expr2
with:
test expr1 && test expr2
and replace:
test expr1 -o expr2
with:
test expr1 || test expr2
but note that, in test, -a has higher precedence than -o while && and || have equal precedence in the shell.
Parentheses or braces can be used in the shell command language to effect grouping.
Parentheses must be escaped when using sh; for example:
This command is not always portable outside XSI-conformant systems. The following form can be used instead:
( test expr1 && test expr2 ) || test expr3
The two commands:
test "$1"
test ! "$1"
could not be used reliably on some historical systems. Unexpected results would occur if such a string condition were used and $1 expanded to !, ( or a known unary primary. Better constructs are:
test -n "$1"
test -z "$1"
respectively.
Historical systems have also been unreliable given the common construct:
test "$response" = "expected string"
One of the following is a more reliable form:
test "X$response" = "Xexpected string"
test "expected string" = "$response"
Note that the second form assumes that expected string could not be confused with any unary primary. If expected string starts with -, (, ! or even =, the first form should be used instead. Using the preceding rules without the marked extensions, any of the three comparison forms is reliable, given any input. (However, note that the strings are quoted in all cases.)
Because the string comparison binary primaries, = and !=, have a higher precedence than any unary primary in the >4 argument case, unexpected results can occur if arguments are not properly prepared. For example, in
test -d $1 -o -d $2
If $1 evaluates to a possible directory name of =, the first three arguments are considered a string comparison, which causes a syntax error when the second -d is encountered. is encountered. One of the following forms prevents this; the second is preferred:
test \( -d "$1" \) -o \( -d "$2" \)
test -d "$1" || test -d "$2"
Also in the >4 argument case,
test "$1" = "bat" -a "$2" = "ball"
Syntax errors will occur if $1 evaluates to ( or !. One of the following forms prevents this; the third is preferred:
test "X$1" = "Xbat" -a "X$2" = "Xball"
test "$1" = "bat" && test "$2" = "ball"
test "X$1" = "Xbat" && test "X$2" = "Xball"
The 3 tests are:
if a variable set to 1 is greater than 0,
if a variable set to 2 is equal to 2, and
if the word "root" is included in the text file /etc/passwd.
1. Perform a mkdir if a directory does not exist:
test ! -d tempdir && mkdir tempdir
2. Wait for a file to become non-readable:
while test -r thefile
do
sleep 30
done
echo '"thefile" is no longer readable'
3. Perform a command if the argument is one of three strings (two variations):
if [ "$1" = "pear" ] || [ "$1" = "grape" ] || [ "$1" = "apple" ]
then
command
fi
case "$1" in
pear|grape|apple) command ; ;
esac
The two forms of the test built-in follow the Bourne shell's if example.
ZERO=0 ONE=1 TWO=2 ROOT=root
if [ $ONE -gt $ZERO ]
[ $TWO -eq 2 ]
grep $ROOT /etc/passwd >&1 > /dev/null # discard output
then
echo "$ONE is greater than 0, $TWO equals 2, and $ROOT is a user-name
in the password file"
else
echo "At least one of the three test conditions is false"
fi
Examples of the test built-in:
test `grep $ROOT /etc/passwd >&1 /dev/null` # discard output
echo $? # test for success
[ `grep nosuchname /etc/passwd >&1 /dev/null` ]
echo $? # test for failure
@ ZERO = 0; @ ONE = 1; @ TWO = 2; set ROOT = root
grep $ROOT /etc/passwd >&1 /dev/null # discard output
# $status must be tested for immediately following grep
if ( "$status" == "0" && $ONE > $ZERO && $TWO == 2 ) then
echo "$ONE is greater than 0, $TWO equals 2, and $ROOT is a user-name
in the password file"
endif
ZERO=0 ONE=1 TWO=$((ONE+ONE)) ROOT=root
if ((ONE > ZERO)) # arithmetical comparison
[[ $TWO = 2 ]] # string comparison
[ `grep $ROOT /etc/passwd >&1 /dev/null` ] # discard output
then
echo "$ONE is greater than 0, $TWO equals 2, and $ROOT is a user-name
in the password file"
else
echo "At least one of the three test conditions is false"
fi
The Korn shell will also accept the syntax of both the if command and the test command of the Bourne shell.
When using the brackets ([]) within if commands, you must separate both inside ends of the brackets from the inside characters with a space.
|
|
Created by unroff & hp-tools. © by Hans-Peter Bischof. All Rights Reserved (1997).
Last modified 21/April/97