mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:17:35 +00:00
Base: Add man page for pkill
This commit is contained in:
parent
1e21e95a1b
commit
23af2cfbc5
1 changed files with 22 additions and 0 deletions
22
Base/usr/share/man/man1/pkill.md
Normal file
22
Base/usr/share/man/man1/pkill.md
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
## Name
|
||||||
|
|
||||||
|
pkill - Signal processes based on name
|
||||||
|
|
||||||
|
## Synopsis
|
||||||
|
|
||||||
|
```sh
|
||||||
|
$ pkill [--count] [--ignore-case] [--echo] [--signal number] [--uid uid-list] [--exact] <process-name>
|
||||||
|
```
|
||||||
|
|
||||||
|
## Options
|
||||||
|
|
||||||
|
* `-c`, `--count`: Display the number of matching processes
|
||||||
|
* `-i`, `--ignore-case`: Make matches case-insensitive
|
||||||
|
* `-e`, `--echo`: Display what is killed
|
||||||
|
* `-s number`, `--signal number`: Signal number to send
|
||||||
|
* `-U uid-list`, `--uid uid-list`: Select only processes whose UID is in the given comma-separated list. Login name or numerical user ID may be used
|
||||||
|
* `-x`, `--exact`: Select only processes whose names match the given pattern exactly
|
||||||
|
|
||||||
|
## Arguments
|
||||||
|
|
||||||
|
* `process-name`: Process name to search for
|
Loading…
Add table
Add a link
Reference in a new issue