Skip to content

Instantly share code, notes, and snippets.

@wk-j
Created March 17, 2023 08:58
Show Gist options
  • Save wk-j/d8531c6c91a638e3309b856d343a1e30 to your computer and use it in GitHub Desktop.
Save wk-j/d8531c6c91a638e3309b856d343a1e30 to your computer and use it in GitHub Desktop.
Kill process using port 7022 in macOS
lsof -i :7022 | grep LISTEN | awk '{print $2}' | xargs kill -9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment