#! /bin/bash 
# Last edited on 2019-04-18 00:26:15 by stolfilocal
# Lists the names of fonts in the "tt-fonts" directory,
# without directory or extension.

( cd tt-fonts && ls *.ttf ) \
  | sed -e 's:.*[/]::g' -e 's:[.]ttf$::g' \
  | sort
  
  
  
