Skip to content

Instantly share code, notes, and snippets.

@felipernb
Created November 22, 2012 09:48
Show Gist options
  • Save felipernb/4130285 to your computer and use it in GitHub Desktop.
Save felipernb/4130285 to your computer and use it in GitHub Desktop.
Extracts unique uris from nginx access log
cat access.log | awk -F'"' '{print $2}'| cut -d ' ' -f2 | uniq > uris.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment