Skip to content

Instantly share code, notes, and snippets.

@rushipkar90
Created September 25, 2015 16:53
Show Gist options
  • Save rushipkar90/e78c0a943240730452fd to your computer and use it in GitHub Desktop.
Save rushipkar90/e78c0a943240730452fd to your computer and use it in GitHub Desktop.
netstat.sh
#!/bin/sh
netstat -ntap | awk '{print $5}' | cut -d ":" -f1 | sort | uniq -c | sort -n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment