From 23af2cfbc52547a205b9c58017ded13d417de63e Mon Sep 17 00:00:00 2001 From: Tim Ledbetter Date: Sun, 4 Jun 2023 14:40:48 +0100 Subject: [PATCH] Base: Add man page for pkill --- Base/usr/share/man/man1/pkill.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Base/usr/share/man/man1/pkill.md diff --git a/Base/usr/share/man/man1/pkill.md b/Base/usr/share/man/man1/pkill.md new file mode 100644 index 0000000000..0def88d62d --- /dev/null +++ b/Base/usr/share/man/man1/pkill.md @@ -0,0 +1,22 @@ +## Name + +pkill - Signal processes based on name + +## Synopsis + +```sh +$ pkill [--count] [--ignore-case] [--echo] [--signal number] [--uid uid-list] [--exact] +``` + +## 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