Previous Topic: Generic Specification of promidNext Topic: Hierarchy Rules for Monitored Entries


Examples

To specify all programs that start with ABC, including program name ABC, enter:

PROG=ABC*

To specify all programs that end with ABC, including program name ABC, enter:

PROG=*ABC

To specify all programs that start with AB and end with C and all those that could have an unspecified number of characters in the middle, enter:

PROG=AB*C

Note: Specifies more than one asterisk in a promid. Do not specify an asterisk by itself: PROG=* because it is invalid.

To specify all four‑character program names that begin with ABC followed by any one character, enter:

PROG=ABC+

Note: A plus sign, +, specifies only one character in a particular position.

To specify all four‑character program names that begin with any character followed by ABC, enter:

PROG=+ABC

To specify all four‑character program names that begin with AB followed by any one character and C, enter:

PROG=AB+C

Note: Specify more than one plus sign in a promid. Do not specify a plus sign by itself: PROG=+ because it is invalid.

To specify all programs that begin with AB followed by one character, C, and an unspecified number of characters, enter:

PROG=AB+C*

Note: Combine asterisks and plus signs.