I've run a python script on the command line that can't be killed with ctrl-C (SIGINT).
$ ./bad_script.py
^CTraceback(most recent call last):
...
KeboardInterrupt
^C
^C
...
<I give up>
When I look for this python process on another command line I see many options:
$ pidof python
1111 2222 3333 4444 5555 6666 # Which one is bad_script.py?
I want to kill my bad_script.py process, not the innocents.
Note this is not a duplicate of other questions that are similar because I want to know which process to kill: