Technical Tuesdays: Powershell Pipelines vs Socks on Amazon
Reading Time: Approximately 3 minutes.
In Powershell, a typical, run-of-the-mill pipeline looks something like this:
Get-ChlidItem ~ | ?{$_.LastWriteTime -lt $(Get-Date 1/1/2015)} | Format-List -Auto
but really looks like this when written in .NET (C# in this example):
… »