Closed
Description
The title of this post may be cheeky. It would also be valid syntax.
It would translate to:
- Find all variables, functions, aliases, and cmdlets
- Iterate over each of them, interesting the PSTypeName 'possible'
The all keyword is a new keyword introduced in PipeScript 0.1.6.
all
is an iterator over everything.
all
can be followed by a number of modifiers or an input variable.
Here's a table of some simple ways to use all
Example | Description |
---|---|
all functions |
outputs all functions |
all aliases |
outputs all aliases |
all cmdlets |
outputs all cmdlets |
all applications |
outputs all applications |
all commands |
outputs all commands |
all variables |
outputs all variables |
all things |
outputs all variables, functions, cmdlets, aliases |
all $numbers |
outputs everything in numbers |