Skip to content

Instantly share code, notes, and snippets.

@folz
Created December 7, 2011 23:08
Show Gist options
  • Save folz/1445208 to your computer and use it in GitHub Desktop.
Save folz/1445208 to your computer and use it in GitHub Desktop.
Bash one-liner to find your CS grade
glookup | grep -v '\-\-\-' | tail -n +2 | head -n -2 | sed 's/ */\ /g' | cut -d' ' -f 3 | awk '{ split($0,a,"/"); num += a[1]; den += a[2] } END { print num/den }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment