Created
June 10, 2020 07:53
-
-
Save rhuanbarreto/472e33cb320a9cbb2c3128261d554a8f to your computer and use it in GitHub Desktop.
Kill Defunct Processes in Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ps -ef | grep defunct | grep -v grep | cut -b8-20 | xargs sudo kill -9 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment