Skip to content

Instantly share code, notes, and snippets.

@fakihariefnoto
Last active May 12, 2020 15:46
Show Gist options
  • Save fakihariefnoto/323e118549462514cd0c1b862ed4bb26 to your computer and use it in GitHub Desktop.
Save fakihariefnoto/323e118549462514cd0c1b862ed4bb26 to your computer and use it in GitHub Desktop.
list of linux command cheat sheet if you forget

Get Most Open Connection in Port 80

netstat -tn 2>/dev/null | grep :80 | awk '{print $5}' | cut -d: -f1 | sort | uniq -c | sort -nr | head

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment