Toggle navigation
All Forums
Recent Posts
Sign In
Kill process commande line
Jump to First Reply
mourad
Posted:
October 14, 2008 1:25AM
in
macOS
edited January 2014
Hello everybody,
Can anyone tell what is the command line to use to kill a process using its name.
I'm on Mac OS X 10.4 Tiger PPC et Mac OS X 10.5 Leaopard Intel
Best regards.
Comments
Reply 1 of 1
mdriftmeyer
Posts:
7,503
member
October 14, 2008 4:04AM
Quote:
Originally Posted by
mourad
Hello everybody,
Can anyone tell what is the command line to use to kill a process using its name.
I'm on Mac OS X 10.4 Tiger PPC et Mac OS X 10.5 Leaopard Intel
Best regards.
$top
See the PID of your process you want killed.
$ps -aux (also works)
$man kill
$man ps
Single command to immediately kill a specific PID is:
$kill -s 9 PID
0
Likes
0
Dislikes
0
Informatives
Sign In
or
Register
to comment.
Comments
Hello everybody,
Can anyone tell what is the command line to use to kill a process using its name.
I'm on Mac OS X 10.4 Tiger PPC et Mac OS X 10.5 Leaopard Intel
Best regards.
$top
See the PID of your process you want killed.
$ps -aux (also works)
$man kill
$man ps
Single command to immediately kill a specific PID is:
$kill -s 9 PID