You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rwxrob-dot/scripts/rndcolor

8 lines
160 B
Bash

#!/usr/bin/env bash
declare -r red=$((RANDOM%256))
declare -r green=$((RANDOM%256))
declare -r blue=$((RANDOM%256))
echo -e $"\033[38;2;$red;$green;${blue}m"