# simple sorting

clear
cat md
sort md


# -r and -n

clear
cat gstats
sort gstats
sort -n gstats
sort -r gstats
sort -nr gstats


