Skip to content

Instantly share code, notes, and snippets.

@ra
Created June 17, 2013 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ra/5801028 to your computer and use it in GitHub Desktop.
Save ra/5801028 to your computer and use it in GitHub Desktop.
total bikes in, and also count of stations with 0 bikes. grab is from github.com/ra/leftern
cut -d : -f 10 grab | cut -d ' ' -f 1 | awk '{total = total + $1}END{print total}'
grep -v Planned grab | cut -d : -f 10 | cut -d ' ' -f 1 | grep -c ^0$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment