1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 15:48:12 +00:00

pgrep: Add --ignore-case as an alias for the -i option

This commit is contained in:
Tim Ledbetter 2023-05-30 17:51:14 +01:00 committed by Andreas Kling
parent 8706c88370
commit f95e6ee849
2 changed files with 3 additions and 3 deletions

View file

@ -5,13 +5,13 @@ pgrep - look up processes based on name
## Synopsis
```sh
$ pgrep [-d delimiter] [-i] [--invert-match] <process-name>
$ pgrep [-d delimiter] [--ignore-case] [--invert-match] <process-name>
```
## Options
* `-d`, `--delimiter`: Set the string used to delimit multiple pids
* `-i`: Make matches case-insensitive
* `-i`, `--ignore-case`: Make matches case-insensitive
* `-v`, `--invert-match`: Select non-matching lines
## Arguments