Add files via upload

This commit is contained in:
kneutron 2022-06-10 13:45:30 -05:00 committed by GitHub
parent f77a8b4f74
commit 662b8a6a44
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

7
zombieprocs.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Linux ps
ps ax -o pid,ppid,s,cmd |awk '$3 ~ /Z/'
# ^ Print pid, parent pid, State, commandline and only print if 3rd column matches Z = zombie
# kill -9 on the PARENT pid, should clear them up