This commit is contained in:
Marc Beninca 2025-07-27 20:38:32 +02:00
parent 1b59810390
commit e94d6fec66
Signed by: marc.beninca
GPG key ID: 9C7613450C80C24F

10
sh/ps/pgrep.sh Normal file
View file

@ -0,0 +1,10 @@
# pgrep
# look for a string in processes names
#| pgrep
#= pg
rwx_proc_grep() {
pgrep \
--list-full \
"${@}"
}