Created
March 19, 2016 22:11
-
-
Save pawel-dubiel/366c519d76aa6e1bf98a to your computer and use it in GitHub Desktop.
Linux admin helper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get last top 10 ips from access log ( last 10000 requests ) | |
tail -n 10000 access.log | awk '{print $1}' | sort | uniq -c | sort -n | tail -n 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment