Created
December 3, 2011 04:51
-
-
Save gsampaio/1426084 to your computer and use it in GitHub Desktop.
MC548 Grades Calculator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
curl "http://www.ic.unicamp.br/~fkm/disciplinas/mc548/old/2011s2/notas.txt" 2>|/dev/null | grep 73177 | sed s/\,/./ | awk '{OFMT="%.2f";print(((3*(($2)+($3)))+(4*(($4)+($5))))/14)}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Overkill!