Originally, the kill command could only send a signal 15 (see UNIX PROGRAMMERS MANUAL Seventh Edition Volume 2A, January 1979 pages 48 & 100), which does attempt to kill the process (but can be ignored by thea process), but these daysonly later was kill can be usedenhanced to allow you to send any signal.
TheSince version 7 of Unix (1979) the default is stillhas been to signal the process in a way which can be caught and either handled gracefully or ignored (by sending a SIGTERM signal), but it can also be used to pull the rug out from under a process (a kill -9 sends a SIGKILL signal which cannot be caught and thus cannot be ignored).
The main metaphor for processes is that of a living beingthing which is born, lives and dies.
Thus, the kill command fits in with this metaphor.
Unix Archaeology
From the manual page from version 4 of Unix (the version where kill was introduced, along with ps) we find:
NAME
kill - do in an unwanted process
SYNOPSIS
kill processid ...
DESCRIPTION
Kills the specified processes.
The processid of each asynchronous process
started with `&' is reported by the shell.
Processid's can also be found by using ps (I).
The killed process must have
been started from the same typewriter
as the current user, unless
he is the superuser.
SEE ALSO
ps(I), sh(I)
I particularly like the final section of this man page:
BUGS
Clearly people should only be allowed to kill
processes owned by them, and having the same typewriter
is neither necessary nor sufficient.
By the time sixth edition had come around, the kill command had already been overloaded to allow any signal to be sent.
From the manual page from version 6 of Unix:
If a signal number preceded by - is given
as first argument, that signal is sent instead of
kill (see signal (II)).
The default though was to send a signal 9, as signal 15 did not yet exist (see the signal(2) man page for v6).
It was only with version 7 of Unix that signal 15 was introduced (see see the signal(2) man page for v7) and kill switched to that rather than using signal 9.