lsb530 / stress-test

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

help)

brew install top, htop, btop

ps -ef | grep (Process Name) | grep -v grep | awk '{print $2}'

htop -p $(ps -ef | grep (Process Name) | grep -v grep | awk '{print $2}')

btop /Stress

ps -ef | grep Stress 
ps -ef | grep Stress | grep -v grep | awk '{print $2}'
top -pid (ProcessId)

(final)
top -pid $(ps -ef | grep "Stress" | grep -v grep | awk '{print $2}')
htop -p $(ps -ef | grep "Stress" | grep -v grep | awk '{print $2}') 

About


Languages

Language:Kotlin 100.0%