mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-08-07 06:08:39 +02:00
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:
parent
677a4592b1
commit
2e3b4b15c8
1 changed files with 4 additions and 4 deletions
|
|
@ -177,10 +177,10 @@ function getip() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Clear zombie processes
|
## Clear zombie processes
|
||||||
function clrz() {
|
#function clrz() {
|
||||||
ps -eal | awk '{ if ($2 == "Z") {print $4}}' | kill -9
|
# ps -eal | awk '{ if ($2 == "Z") {print $4}}' | kill -9
|
||||||
}
|
#}
|
||||||
|
|
||||||
# Second concurrent
|
# Second concurrent
|
||||||
function conssec() {
|
function conssec() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue