Library /sys$common/syshlp/nclhelp.hlb NCL Introduction, Syntax, Prepositional Phrases, With Preposition *Conan The Librarian (sorry for the slow response - running on an old VAX) |
Use the "with" prepositional phrase to qualify an NCL command to limit the scope of its operation. Also called filtering, this process is useful in displaying or acting upon only certain information. The expression supplied as part of the with clause must be an attribute of the entity (or entities) specified in the command. ncl> show session control application *, with maximum instances>0 For every session control application entity on node 0 (the local system), NCL finds the entities with maximum instances greater than zero, and returns the identifying information about those session control application entities. The with prepositional phrase is a boolean expression that can use the relational operators as follows: Symbol Meaning <> Not equals < Less than <= Less than or equal to > Greater than >= Greater than or equal to
Additional Information (explode) :
|