rwx/sh/alias/pgrep.sh
2025-07-06 19:16:29 +02:00

7 lines
98 B
Bash

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