mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 14:12:41 +00:00
13 lines
180 B
Bash
Executable File
13 lines
180 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
font_dir="$(brew --prefix)/share/figlet/fonts"
|
|
|
|
for font in "${font_dir}"/*.flf; do
|
|
clear
|
|
echo "FONT: $font"
|
|
figlet -f "${font}" hello
|
|
read -r line
|
|
done
|