figlet
Install
Arch Linux
... 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
``