rwx/sh/alias/pgrep.sh

8 lines
98 B
Bash
Raw Normal View History

# look for a string in processes names
2025-07-06 19:16:29 +02:00
#= pg
a__proc_grep() {
pgrep \
--list-full \
"${@}"
}