Open
Description
One can create a noun-oriented command in a fairly predictable fashion:
- Define all potential verbs of the noun in a series of commands.
- Create a command named Get-Noun, which will automatically map to Noun in PowerShell
- Alias the command to the desired verbs where appropriate.
- Discover all extensions to this command, given its invocation name
- Provide dynamic parameters to the command, given its invocation name.
- Create a steppable pipeline to all matching commands
- Pass down any appropriate parameters and step thru input
PipeScript should be able to generate a command that performs these steps.