Skip to content

Instantly share code, notes, and snippets.

@adbertram
Created May 27, 2024 13:06
Show Gist options
  • Select an option

  • Save adbertram/50bd853307f0bf716bfdf13616832894 to your computer and use it in GitHub Desktop.

Select an option

Save adbertram/50bd853307f0bf716bfdf13616832894 to your computer and use it in GitHub Desktop.
## no
gps | ? {$_.cpu -gt 100} | % { $_.name } | sort | ft -AutoSize
## yes
Get-Process | Where-Object { $_.CPU -gt 100 } | ForEach-Object { $_.Name } | Sort-Object | Format-Table -AutoSize
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment