Skip to content

Instantly share code, notes, and snippets.

@steventwheeler
Created September 13, 2016 16:26
Show Gist options
  • Save steventwheeler/0580040f65c1fafff549a1cd70b23e62 to your computer and use it in GitHub Desktop.
Save steventwheeler/0580040f65c1fafff549a1cd70b23e62 to your computer and use it in GitHub Desktop.
List processes with more than 100 threads.
ps -eo nlwp,pid,stime,cmd | awk '{ if($1 >= 100) print }' | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment