Skip to content

Instantly share code, notes, and snippets.

@lnhrdt
Created June 27, 2017 14:07
Show Gist options
  • Save lnhrdt/a46d8ab364f561a2dce5ade9e1ea5695 to your computer and use it in GitHub Desktop.
Save lnhrdt/a46d8ab364f561a2dce5ade9e1ea5695 to your computer and use it in GitHub Desktop.
kill anything running on a port
#!/usr/bin/env bash
lsof -t -i tcp:$1 | xargs kill
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment