Skip to content

Instantly share code, notes, and snippets.

@bohrqiu
Created September 23, 2014 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bohrqiu/40fdc0734f171eb5486e to your computer and use it in GitHub Desktop.
Save bohrqiu/40fdc0734f171eb5486e to your computer and use it in GitHub Desktop.
查看java进程启动线程数
for pid in `ps -ef |grep java| grep -v 'grep'| awk '{print $2}'`
do
cat /proc/$pid/status |grep Threads | awk '{print $2}'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment