10 lines
346 B
Bash
Executable File
10 lines
346 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#curl -sL https://git.schroedercity.com/voltron/Misc-Scripts/raw/master/colors.inc | source
|
|
|
|
source /dev/stdin <<< "$(curl https://git.schroedercity.com/voltron/Misc-Scripts/raw/master/colors.inc)"
|
|
|
|
|
|
echo -e "${CS[color,LightBlue]}Testing TESTING ${CS[style,Bold]}REALLY TESTING${CS[style,Reset]}${CS[color,Default]}"
|
|
|
|
exit 0 |