Skip to content

Instantly share code, notes, and snippets.

@eddieantonio
Created March 21, 2022 15:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eddieantonio/21fec4319cbe56d07472c07bacd5de64 to your computer and use it in GitHub Desktop.
Save eddieantonio/21fec4319cbe56d07472c07bacd5de64 to your computer and use it in GitHub Desktop.
Filter the output of ss -tulpn and display only relevant information, truncated
#!/bin/sh
ss -tulpn | awk '$2=="LISTEN" {printf "%16s %s\n", $5, substr($7, 1, 80-16)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment