Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save basilleaf/d28a19162209e469de9d562f1b3d9a7a to your computer and use it in GitHub Desktop.

Select an option

Save basilleaf/d28a19162209e469de9d562f1b3d9a7a to your computer and use it in GitHub Desktop.
kill orphaned node dev servers
lsof -iTCP -sTCP:LISTEN -P -n | grep '127.0.0.1\|::1' | grep node | awk '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment