rwx/sh/alias/pgrep.sh

8 lines
128 B
Bash
Raw Normal View History

2023-05-09 20:02:34 +00:00
# look for a string in processes names
2024-11-18 17:43:16 +00:00
pg() { sh_a__proc_grep "${@}"; }
sh_a__proc_grep() {
pgrep \
--list-full \
"${@}"
2024-11-16 14:29:05 +00:00
}