7 lines
80 B
Bash
7 lines
80 B
Bash
# look for a string in processes names
|
|
pg() {
|
|
ps \
|
|
-A |
|
|
grep \
|
|
"${@}"
|
|
}
|