Skip to content

Instantly share code, notes, and snippets.

@Sounds-of-Science
Created January 14, 2014 08:43
Show Gist options
  • Select an option

  • Save Sounds-of-Science/8415161 to your computer and use it in GitHub Desktop.

Select an option

Save Sounds-of-Science/8415161 to your computer and use it in GitHub Desktop.
Display tcp connections on the machine and their states.
# Display tcp connections on the machine and their states.
netstat -an | awk '/tcp/ {print $6}' | sort | uniq -c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment