Google News
logo
PowerShell - Interview Questions
What is a pipeline in PowerShell?
A PowerShell pipeline is the series of statements which are connected by the pipe '|' operator. In a command, each pipeline operator is used to send the output or result of the preceding command to the next command.
 
Following box describes the syntax of a pipeline :
Command-1 | Command-2 | Command-3
Advertisement