From 2e3b4b15c864d3bd0d817373469b8768a4d64d17 Mon Sep 17 00:00:00 2001 From: Yann ILAS Date: Thu, 9 Jul 2026 09:34:26 +0200 Subject: [PATCH] Comment out clrz function in systemadmin.plugin.zsh Comment out the clrz function for clearing zombie processes. Linux context: zombie can't be removed --- plugins/systemadmin/systemadmin.plugin.zsh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/systemadmin/systemadmin.plugin.zsh b/plugins/systemadmin/systemadmin.plugin.zsh index fa7e5f786..566384f72 100644 --- a/plugins/systemadmin/systemadmin.plugin.zsh +++ b/plugins/systemadmin/systemadmin.plugin.zsh @@ -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() {