rwx/sh/alias/pgrep.sh

8 lines
122 B
Bash
Raw Normal View History

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