Skip to content

Instantly share code, notes, and snippets.

@nikuyoshi
Last active August 29, 2015 14:00
Show Gist options
  • Save nikuyoshi/11368130 to your computer and use it in GitHub Desktop.
Save nikuyoshi/11368130 to your computer and use it in GitHub Desktop.
Apacheのアクセスログから、ホスト名、アクセス時間、アクセスページを切り出すワンライナー

Apacheのアクセスログから、ホスト名、アクセス時間、アクセスページを切り出すワンライナー

cat /var/log/httpd/access_log | awk '{print $1 "\t" $4 "\t" $11}' | sed -e 's/\[//g' -e 's/"//g' | egrep "22/Apr/2014:18:4"| uniq | sort -k 2n,2n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment