Use top and ps commands.
Display the process utilizing the most cpu and quits to sh:
Display CPU Utilization:
And use ps to display processes with the highest CPU utilization
Code:
ps -eo pid,pcpu,args | sort +1n
Read man pages of each of the above commands to get more details and supported options.