| Main index | Section 1 | 日本語 | Options |
The options are as follows:
| | Be more verbose about what will be done, but do not send any signal. The total number of user processes and the real user ID is shown. A list of the processes that will be sent the signal will be printed, or a message indicating that no matching processes have been found. |
| |
Use the effective user ID instead of the (default) real user ID for matching
processes specified with the
|
| | Give a help on the command usage and exit. |
| | Request confirmation before attempting to signal each process. |
| | List the names of the available signals and exit, like in kill(1). |
| | Match the argument procname as a (case sensitive) regular expression against the names of processes found. CAUTION! This is dangerous, a single dot will match any process running under the real UID of the caller. |
| | Be verbose about what will be done. |
| |
Same as
|
| SIGNAL | Send a different signal instead of the default TERM. The signal may be specified either as a name (with or without a leading "SIG"), or numerically. |
| | |
| Kill processes in the specified jail. | |
| | |
| Limit potentially matching processes to those belonging to the specified user. | |
| | Limit potentially matching processes to those running on the specified tty. |
| | |
| Limit potentially matching processes to those matching the specified procname. | |
| | Suppress error message if no processes are matched. |
| | Do not skip zombies. This should not have any effect except to print a few error messages if there are zombie processes that match the specified pattern. |
killall firefox
Send SIGTERM to firefox processes belonging to USER:
killall -u ${USER} firefox
Stop all firefox processes:
killall -SIGSTOP firefox
Resume firefox processes:
killall -SIGCONT firefox
Show what would be done to firefox processes, but do not actually signal them:
killall -s firefox
Send SIGKILL to csh process running inside jail ID 282:
killall -9 -j282 csh
Send SIGTERM to all processes matching provided pattern (like vim and vimdiff):
killall -m 'vim*'
| KILLALL (1) | June 27, 2020 |
| Main index | Section 1 | 日本語 | Options |
Please direct any comments about this manual page service to Ben Bullock. Privacy policy.
| “ | If at first you don't succeed, you must be a programmer. | ” |