In this how-to we’ll look at various ways of using the terminal emulator to identify processes and how to kill them. A process can be an application or script running on your Linux machine. Sometimes ...
I want to create a shell script that can kill a process without having knowledge of the PID.<BR><BR>This is what I do now:<BR><BR>%: top<BR> (find process w/PID)<BR>%: q<BR>%: kill -1 PID<BR><BR><BR>I ...