Skip to content

Instantly share code, notes, and snippets.

@rhberro
Created September 21, 2018 23:58
Show Gist options
  • Save rhberro/68fdf1bfc00ce64353e2bdd039664c3c to your computer and use it in GitHub Desktop.
Save rhberro/68fdf1bfc00ce64353e2bdd039664c3c to your computer and use it in GitHub Desktop.
A function to kill process for a given port.
killport ()
{
lsof -i tcp:"@$" | awk 'NR!=1 {print $2}' | xargs kill -9
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment