 |
» |
|
|
|
Used to control the execution sequence of a job, UDC, or command
file. (Native Mode) Syntax |  |
Parameters |  |
Table 4-1 Logical Operators - The IF Command Logical operators: | AND, OR, XOR, NOT | Boolean functions and values: | BOUND, TRUE, FALSE, ALPHA, ALPHANUM, NUMERIC,
ODD | Comparison operators: | =, <>, <, >, <=,
>= | Bit manipulation operators: | LSL, LSR, CSR, CSL, BAND, BOR, BXOR, BNOT | Arithmetic operators: | MOD, ABS, * , / , + , -, ^ (exponentiation) | Functions returning strings: | CHR, DWNS, UPS, HEX, OCTAL, INPUT, LFT, RHT,
RPT, LTRIM, RTRIM, STS | Functions returning integers: | ABS, LEN, MAX, MIN, ORD, POS, TYPEOF | Other functions: | FINFO, SETVAR |
The allowed operands are any variable, integer, string, or
Boolean constants, and the MPE/iX reserved words are WARN,
FATAL, SYSTEM,
and OK. Compound logical expressions can be formed using the AND,
NOT, XOR, and OR logical operators, and nested within parentheses. The THEN
keyword is optional. It may be used or omitted and has no effect
on the results. Use |  |
This command may be issued from a job, session, program, or
in BREAK. Pressing Break has
no effect unless expression contains
the INPUT evaluator function. Example |  |
The following job listing illustrates the use of an IF statement
with ELSE and ENDIF statements: !CONTINUE !PASXL MYPROG,MYUSL !IF JCW>=FATAL THEN ! TELL USER.TECHPUBS;COMPILE FAILED !ELSE ! TELL USER.TECHPUBS;COMPILE COMPLETED !ENDIF
|
Related Information |  |
- Commands
CALC,
ELSE, ELSEIF,
ENDIF, WHILE,
ENDWHILE, ESCAPE,
RETURN - Manuals
Appendix B, "Expression Evaluator Functions"
|