Skip to content

Instantly share code, notes, and snippets.

@petitchevalroux
Created February 14, 2017 14:57
Show Gist options
  • Save petitchevalroux/92b0f4376fbda5e81a9b499df40051fc to your computer and use it in GitHub Desktop.
Save petitchevalroux/92b0f4376fbda5e81a9b499df40051fc to your computer and use it in GitHub Desktop.
Get log event count order by count group by date dat
find . -name "*.log" -type f -exec egrep "event" {} \; | egrep -o "^[a-Z]+\s+[0-9]+" | sort | uniq -c | sort -n -k1 | tac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment