Comment out clrz function in systemadmin.plugin.zsh

Comment out the clrz function for clearing zombie processes.
Linux context: zombie can't be removed
This commit is contained in:
Yann ILAS 2026-07-09 09:34:26 +02:00 committed by GitHub
commit 2e3b4b15c8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,10 +177,10 @@ function getip() {
fi
}
# Clear zombie processes
function clrz() {
ps -eal | awk '{ if ($2 == "Z") {print $4}}' | kill -9
}
## Clear zombie processes
#function clrz() {
# ps -eal | awk '{ if ($2 == "Z") {print $4}}' | kill -9
#}
# Second concurrent
function conssec() {