diff --git a/TipsPs.md b/TipsPs.md index 5bb777a2..2b431cd8 100644 --- a/TipsPs.md +++ b/TipsPs.md @@ -2,4 +2,10 @@ ~~~{.bash} $ ps -f -p xxx -eo uid | tail -n1 | xargs id +~~~ + +# Lister tout les process en State=Z (Zombie) + +~~~{.bash} +$ ps aux | awk '$8=="Z"' | awk '{ print $2 }' ~~~ \ No newline at end of file