Skip to content

Instantly share code, notes, and snippets.

@meonkeys
Forked from anonymous/rainbow-banner.sh
Last active February 26, 2017 21:53
Show Gist options
  • Save meonkeys/1c8f2ed2f033c977a77dcabddae7c1de to your computer and use it in GitHub Desktop.
Save meonkeys/1c8f2ed2f033c977a77dcabddae7c1de to your computer and use it in GitHub Desktop.
Use toilet to make a colorful banner in the console. Exercise for the reader: use first command-line argument as the banner text!
#!/bin/bash
while IFS= read -r -n1 char
do
clear
all="${all:-}$char"
toilet -t -F gay -f smmono12.tlf "$all"
sleep 0.25
done <<< 'Programming!'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment