rwx/sh/alias/pgrep.sh

8 lines
124 B
Bash
Raw Normal View History

2023-05-09 22:02:34 +02:00
# look for a string in processes names
2024-11-19 09:17:14 +01:00
pg() { sa__proc_grep "${@}"; }
sa__proc_grep() {
2024-11-18 18:43:16 +01:00
pgrep \
--list-full \
"${@}"
2024-11-16 15:29:05 +01:00
}