10 lines
117 B
Bash
10 lines
117 B
Bash
# pgrep
|
|
|
|
# look for a string in processes names
|
|
#| pgrep
|
|
#= pg
|
|
rwx_proc_grep() {
|
|
pgrep \
|
|
--list-full \
|
|
"${@}"
|
|
}
|