#!/bin/sh

# Show distribution (actually just a list) of grades received by students

cat grades.txt | stripgradestats | excol LET | tail +2 | officialize | tr -d ' ' | sed 's+$+Z+' | tr '-' 'z' | sort -d | tr 'zZ\n' '-  '


