Skip to content

figlet

Install

Arch Linux

pacman -S figlet
... additional fonts
pamac install figlet-fonts

Examples

Show example with all possible fonts

for font in $(find /usr/share/figlet/fonts -name '*.[ft]lf'); do
  echo "$font:"
  figlet -t -f "$font" "12390 absdkizyw ABCDEFGHIJKLM"
  echo -e "\n\n"
done 
``