Search notes:

Shell command: kill

kill terminates (which is an euphemism) a process.

Quickly kill a process

Kill the process whose name contains CMD:
$ kill -9  $(ps -ef | grep CMD | grep -v grep | awk '{print $2}')
But see also killall to kill a process by its name.

See also

signal
The cmd.exe equivalent seems to be taskkill.exe.
Shell commands

Index