Skip to content

Instantly share code, notes, and snippets.

@ItsMeooooooo
Created August 6, 2015 09:12
Show Gist options
  • Save ItsMeooooooo/4543fbd8ad91e95c5503 to your computer and use it in GitHub Desktop.
Save ItsMeooooooo/4543fbd8ad91e95c5503 to your computer and use it in GitHub Desktop.
show the most accessed URL in web server log
awk '{print $7}' access.log | sort | uniq -c | sort -rn
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment