pkill -f <process_name>
killall <process_name>
ps aux | grep <process_name> | grep -v grep | awk '{print $2}'
kill $(ps aux | grep <process_name> | grep -v grep | awk '{print $2}')
pkill -f <process_name>
killall <process_name>
ps aux | grep <process_name> | grep -v grep | awk '{print $2}'
kill $(ps aux | grep <process_name> | grep -v grep | awk '{print $2}')