dotfiles/dot_local/bin/executable_figlet-gallery

8 lines
171 B
Bash

#!/usr/bin/env bash
find /usr/share/figlet/fonts -name '*.[ft]lf' | while read -r font; do
echo "$font:"
figlet -t -f "$font" "Hello World"
echo
echo
done | less