Skip to content

Instantly share code, notes, and snippets.

@aksinghdce
Created January 31, 2020 17:16
Show Gist options
  • Save aksinghdce/18d367d43678f77657c82372d8bd177f to your computer and use it in GitHub Desktop.
Save aksinghdce/18d367d43678f77657c82372d8bd177f to your computer and use it in GitHub Desktop.
Kill a long list of processes
# Works in a linux environment
ps -ef | grep -i jupyter | awk '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment