Skip to content

Instantly share code, notes, and snippets.

@mattlong
Created April 23, 2019 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattlong/ba56c8123c318e22e544f818fe4390ea to your computer and use it in GitHub Desktop.
Save mattlong/ba56c8123c318e22e544f818fe4390ea to your computer and use it in GitHub Desktop.
Kill defunct proccesses
#!/bin/bash
parents_of_dead_kids=$(ps -ef | grep [d]efunct | awk '{print $3}' | sort | uniq | egrep -v '^1$'); echo "$parents_of_dead_kids" | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment