help)
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}')