Skip to content

Instantly share code, notes, and snippets.

@Ic3fr0g
Created June 30, 2020 13:36
Show Gist options
  • Save Ic3fr0g/4c7b711d8dc28dadc8819586338b459b to your computer and use it in GitHub Desktop.
Save Ic3fr0g/4c7b711d8dc28dadc8819586338b459b to your computer and use it in GitHub Desktop.
Kill processes
# Kill process by program-name
ps -ax | grep <program-name> | awk '{print $1}' | xargs kill
# Kill processes using port
lsof -i:<port> | awk 'NR!=1 {print $2}' | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment