Skip to content

Instantly share code, notes, and snippets.

@jordanlewis
Created June 6, 2010 21:20
Show Gist options
  • Save jordanlewis/427909 to your computer and use it in GitHub Desktop.
Save jordanlewis/427909 to your computer and use it in GitHub Desktop.
#!/bin/bash
read a
i=-1
while ((++i<${#a}))
do
c=${a:$i:1}
figlet -f banner $c | sed "s/[^ ]/$c/g"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment