The pkill command exmples

To halt or stop a user called sqley, enter:
# pkill -STOP -u sqley

To resume a user called sqley who was halted previously by the pkill command:
# pkill -CONT -u sqley

To kill all java process owned by sqley user, enter:
# pkill -KILL -u sqley java

Comments