home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / charsets / macfontx.sh < prev    next >
Text File  |  2020-01-01  |  903b  |  19 lines

  1. sort +0.4 -0.8 < macfontx.mac-order > macfontx.dec-order
  2. sort -f +0.12 -0.80 < macfontx.mac-order > macfontx.nam-order
  3.  
  4. echo "Special Graphics tallies:"
  5. echo -n "0: " ; grep "SG" macfontx.mac-order | cut -c 47 | grep "0" | wc -l
  6. echo -n "1: " ; grep "SG" macfontx.mac-order | cut -c 47 | grep "1" | wc -l
  7. echo -n "2: " ; grep "SG" macfontx.mac-order | cut -c 47 | grep "2" | wc -l
  8. echo
  9. echo "DEC Tech tallies:"
  10. echo -n "0: " ; grep "TEC" macfontx.mac-order | cut -c 47 | grep "0" | wc -l
  11. echo -n "1: " ; grep "TEC" macfontx.mac-order | cut -c 47 | grep "1" | wc -l
  12. echo -n "2: " ; grep "TEC" macfontx.mac-order | cut -c 47 | grep "2" | wc -l
  13. echo
  14. echo "All categories:"
  15. echo -n "0: " ; cut -c 47 macfontx.mac-order | grep "0" | wc -l
  16. echo -n "1: " ; cut -c 47 macfontx.mac-order | grep "1" | wc -l
  17. echo -n "2: " ; cut -c 47 macfontx.mac-order | grep "2" | wc -l
  18. echo -n "Tot" ; wc -l macfontx.mac-order
  19.