Skip to content

Instantly share code, notes, and snippets.

@aaronpk
Created September 24, 2013 21:12
Show Gist options
  • Select an option

  • Save aaronpk/6691313 to your computer and use it in GitHub Desktop.

Select an option

Save aaronpk/6691313 to your computer and use it in GitHub Desktop.
$ grep -r "\[Weather\]" . | cut -f4 -d: | cut -f 3- -d " " | sed -e 's/(.*$//g' -e 's/ for the.*//g' -e 's/ /_/g' | awk '{x[$0]++}END{for(i in x){printf("%s\t%d\n", i, x[i])}}' | sort -nk2| column -t -s " " | gtac
Light_rain 46
Clear 44
Drizzle 24
Possible_drizzle 8
Sprinkling 5
Rain 4
Possible_sprinkling 4
Possible_light_rain 1
A_couple_of_small_clouds_in_the_sky 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment