Skip to content

Instantly share code, notes, and snippets.

@markoa
Created February 8, 2010 23:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save markoa/298743 to your computer and use it in GitHub Desktop.
Save markoa/298743 to your computer and use it in GitHub Desktop.
Infinite rainbow in terminal
#!/bin/bash
# Infinite rainbow in terminal
yes "$(seq 1 255)" | while read i; do printf "\x1b[48;5;${i}m\n"; sleep .01; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment