InterviewSolution
Saved Bookmarks
| 1. |
Describe what is Powershell Pipeline used for? |
|
Answer» PowerShell pipeline is UTILIZED for combining TWO statements like when the output of a statement BECOMES the input of the second statement. For example, Command-1 | Command-2 | Command-3 In this example, the objects that Command-1 emits are sent to Command-2. Command-2 processes the objects and sends them to Command-3. Command-3 processes the objects and sends them down the pipeline. As there are no more COMMANDS in the pipeline, the results are displayed at the console. |
|