Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save linhxhust/a9e772d12198671b195794f6f0f932a9 to your computer and use it in GitHub Desktop.
Save linhxhust/a9e772d12198671b195794f6f0f932a9 to your computer and use it in GitHub Desktop.
Kill process by name
ps -elf | awk '/<process_name>/ && !/awk/ {print $4}' | xargs -r kill -s SIGTERM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment