PowerShell
Pipeline Commands
Master the PowerShell pipeline. Learn Where-Object, Select-Object, ForEach-Object, and data transformations.
16 commands
Pro Tips
Use 'Where-Object' shorthand: '$_ -gt 10' can be written as '? {$_ -gt 10}'.
Use 'Select-Object -ExpandProperty' to get just the values instead of objects.