POWERSHELL

ForEach-Object Instead of 1..5| ForEach-Object { $_ * 2 } you can write the oft-used cmdlet as: 1..5| % { $_ * 2 } % percent (a) alias for ForEach-Object Special case of above for a single property of pipeline input: ls| % name is equivalent to ls| % { $_.name} ................
................