rwx/sh/ps/pgrep.sh

11 lines
117 B
Bash
Raw Normal View History

2025-07-27 20:37:16 +02:00
# pgrep
# look for a string in processes names
2025-07-27 20:37:16 +02:00
#| pgrep
2025-07-06 19:16:29 +02:00
#= pg
2025-07-27 20:37:16 +02:00
rwx_proc_grep() {
pgrep \
--list-full \
"${@}"
}