diff --git a/dot_local/bin/executable_figlet-gallery b/dot_local/bin/executable_figlet-gallery new file mode 100644 index 0000000..de0aeed --- /dev/null +++ b/dot_local/bin/executable_figlet-gallery @@ -0,0 +1,8 @@ +#!/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