How to kill a Unix or Linux process
Use the following command to kill a unix process:
kill -9 `ps -ef | grep <process-name> | grep -v grep | awk ‘{print $2}’`
For example,
kill -9 `ps -ef | grep GrantDownloadByID | grep -v grep | awk ‘{print $2}’`
Popularity: 2%


















































