8 lines
122 B
Bash
8 lines
122 B
Bash
|
# look for a string in processes names
|
||
|
pg() { a__proc_grep "${@}"; }
|
||
|
a__proc_grep() {
|
||
|
pgrep \
|
||
|
--list-full \
|
||
|
"${@}"
|
||
|
}
|