Skip to content

Instantly share code, notes, and snippets.

@ronascentes
Created January 7, 2022 17:38
Show Gist options
  • Save ronascentes/34c9d3b53915f50771af7bca884b2b69 to your computer and use it in GitHub Desktop.
Save ronascentes/34c9d3b53915f50771af7bca884b2b69 to your computer and use it in GitHub Desktop.
Poor man's "top" for Windows
while($true) { cls ; '' ; ps | sort cpu -Descending | select -first 20 | ft -auto; Start-Sleep -Milliseconds 1000 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment