mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-11 17:00:37 +00:00
Base: Add man page for pidof
This commit is contained in:
parent
fac6c6c554
commit
f666989c9e
Notes:
sideshowbarker
2024-07-17 02:22:23 +09:00
Author: https://github.com/tcl3 Commit: https://github.com/SerenityOS/serenity/commit/f666989c9e Pull-request: https://github.com/SerenityOS/serenity/pull/18823
1 changed files with 19 additions and 0 deletions
19
Base/usr/share/man/man1/pidof.md
Normal file
19
Base/usr/share/man/man1/pidof.md
Normal file
|
@ -0,0 +1,19 @@
|
|||
## Name
|
||||
|
||||
pidof - list pids for a given process name
|
||||
|
||||
## Synopsis
|
||||
|
||||
```sh
|
||||
$ pidof [-s] [-o pid] [-S separator] <process-name>
|
||||
```
|
||||
|
||||
## Options
|
||||
|
||||
* `-o pid`: Omit the given pid, or the parent process if the special value %PPID is passed
|
||||
* `-s`: Only return one pid
|
||||
* `-S separator`: Use `separator` to separate multiple pids
|
||||
|
||||
## Arguments
|
||||
|
||||
* `process-name`: Process name to search for
|
Loading…
Reference in a new issue