I would like it if PowerShell could detect the pipe character as the first non-whitespace on a line as a continuation of the previous line, meaning we could write something like this:
$result = Get-Process
| Where WS -gt 500mb
| Format-Table VM, WS, CPU, ID, ProcessName
without having to add backticks!
I would like it if PowerShell could detect the pipe character as the first non-whitespace on a line as a continuation of the previous line, meaning we could write something like this:
without having to add backticks!