Skip to content

Instantly share code, notes, and snippets.

@s4kr4
Created August 10, 2017 09:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s4kr4/33025820bc123cc46b83276793fcf661 to your computer and use it in GitHub Desktop.
Save s4kr4/33025820bc123cc46b83276793fcf661 to your computer and use it in GitHub Desktop.
#!/bin/bash
colors=("" "" "" "" "" "")
color_end=""
length=$((${#1} - 1))
for i in `seq 0 1 $length`
do
index=$((i%6))
text=$text${colors[$index]}${1:$i:1}${color_end}
done
echo $text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment