rwx/sh/alias/pgrep.sh

8 lines
122 B
Bash
Raw Normal View History

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