Files
crumbmissions/crumbmission/ascii_zero.sh
Branko May Trinkwald 2915828adf Add complete Crumbforest mission system
- Interactive mission selector with metadata-driven design
- 5 educational missions (basics + advanced)
- AI assistant roles (Deepbit, Bugsy, Schnippsi, Tobi)
- SnakeCam gesture recognition system
- Token tracking utilities
- CLAUDE.md documentation
- .gitignore for logs and secrets
2025-12-21 01:16:48 +01:00

19 lines
437 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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