rwx/sh/alias/pgrep.sh
2024-11-19 09:17:14 +01:00

7 lines
124 B
Bash

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