mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
6 lines
119 B
Bash
Executable File
6 lines
119 B
Bash
Executable File
#!/usr/bin/env bash
|
|
red=$[RANDOM%255]
|
|
green=$[RANDOM%255]
|
|
blue=$[RANDOM%255]
|
|
echo -en "\033[38;2;$red;$green;${blue}m"
|