Skip to content

Instantly share code, notes, and snippets.

@rawiriblundell
Created May 10, 2018 02:55
Show Gist options
  • Select an option

  • Save rawiriblundell/4163f7f214a5a27c3d345b1c4d521fb5 to your computer and use it in GitHub Desktop.

Select an option

Save rawiriblundell/4163f7f214a5a27c3d345b1c4d521fb5 to your computer and use it in GitHub Desktop.
Randomly colourise each line of output
pretty () {
while read -r; do
printf "\033[38;5;%dm%s\033[0m\n" $(($RANDOM%255)) "${REPLY}";
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment