Skip to content

Instantly share code, notes, and snippets.

@tysonwolker
Last active November 18, 2015 03:59
Show Gist options
  • Save tysonwolker/7f443a69cc03eb58b936 to your computer and use it in GitHub Desktop.
Save tysonwolker/7f443a69cc03eb58b936 to your computer and use it in GitHub Desktop.
processToKill=$(lsof -n -i4TCP:9999 | grep LISTEN | awk '{print $2}')
if [ -n "$processToKill" ]; then
kill $processToKill
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment