Skip to content

Instantly share code, notes, and snippets.

@IcaroBichir
Created October 5, 2018 13:37
Show Gist options
  • Save IcaroBichir/b85292f6bd230368fbae48858e66fe13 to your computer and use it in GitHub Desktop.
Save IcaroBichir/b85292f6bd230368fbae48858e66fe13 to your computer and use it in GitHub Desktop.
parse logs
cat $filename | awk '{print $1}' | sort | uniq -c | awk '{ print $2 " " $1 }' > records_$filename
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment