7 lines
122 B
1
# look for a string in processes names
2
pg() { a__proc_grep "${@}"; }
3
a__proc_grep() {
4
pgrep \
5
--list-full \
6
"${@}"
7
}
8