Skip to content

Instantly share code, notes, and snippets.

@unstppbl
Created October 25, 2019 18:22
Show Gist options
  • Save unstppbl/b1705a276dd5f724742ad19ba59de5ff to your computer and use it in GitHub Desktop.
Save unstppbl/b1705a276dd5f724742ad19ba59de5ff to your computer and use it in GitHub Desktop.
shell command to print tcp connections status
while true; do netstat -ant | awk '{print $6}' | sort | uniq -c | sort -n; sleep 1; clear; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment