Syntax and Descriptions
- Last UpdatedJan 05, 2024
- 1 minute read
Within the descriptions of the commands in Section 6 the following shorthand notation is used:
|
( ) |
Parameters enclosed within ( ) indicate a group of mandatory alternatives from which one must be taken. |
|
|
< > |
Parameters enclose within < > indicate a group of optional alternatives from which one may be taken. |
|
|
! |
The exclamation mark character ! is used to delimit a group of alternatives and should be read as OR. |
|
|
$W |
Indicates that a single alphanumeric identifier (A-Z, 0-9) must be supplied. The first character must be a letter of the alphabet. If an identifier is to contain special characters for example, SPACE, it must be entered within double quotes for example, My Name. |
|
|
|
for example, ABC or abc or This Id |
|
|
$L |
To indicate that one or more alphanumeric identifiers must be supplied. Each identifier must be separated by a valid delimiter that means, SPACE or COMMA. |
|
|
|
for example, A1 A2 A3 |
|
|
$F |
Indicates that a valid file name must be supplied. The format of the file specification must conform to the allowable specification for the machine on which the application is implemented. |
|
|
|
for example, LOFTBOOK.DAT |
|
|
$N |
Indicates that a single number must be supplied. |
|
|
for example, 1.5 |
||
|
$S |
Indicates that one or more numbers must be supplied. |
|
|
|
for example, 1 2 3.5 4 |