rwx/sh/alias/pgrep.sh
2025-07-27 20:37:16 +02:00

10 lines
117 B
Bash

# pgrep
# look for a string in processes names
#| pgrep
#= pg
rwx_proc_grep() {
pgrep \
--list-full \
"${@}"
}