Skip to content

Instantly share code, notes, and snippets.

@cnmoro
Created November 6, 2019 18:09
Show Gist options
  • Save cnmoro/9a5997ccff986a5c4c164d2a883be6f0 to your computer and use it in GitHub Desktop.
Save cnmoro/9a5997ccff986a5c4c164d2a883be6f0 to your computer and use it in GitHub Desktop.
Linux kill process by name
ps -ef | grep your_process_name | grep -v grep | awk '{print $2}' | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment