rwx/sh/cmd/ps.sh
2024-11-18 12:38:15 +01:00

7 lines
80 B
Bash

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