#!/bin/bash # ascii_zero.sh – Terminal-Fallback-Kunst wort="$1" if [ -z "$wort" ]; then echo "🖋️ Bitte ein Wort angeben. Beispiel: ascii \"Crumbforest\"" exit 1 fi if command -v figlet >/dev/null 2>&1; then echo "🎨 Terminal-Schrift für \"$wort\":" figlet -f slant "$wort" else echo "🪵 Fallback (kein figlet installiert):" echo "========================" echo " $wort" echo "========================" fi