From 1d14ae1fc41089930b852724f9320f998d0c7b85 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Tue, 2 Oct 2018 09:04:38 -0500 Subject: [PATCH] colors.5 --- colors.inc | 2 ++ test.sh | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/colors.inc b/colors.inc index c16d444..3505420 100755 --- a/colors.inc +++ b/colors.inc @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + declare -A CS CS[color,Default]="\e[39m" CS[color,Black]="\e[30m" diff --git a/test.sh b/test.sh index 8213a14..ba37807 100755 --- a/test.sh +++ b/test.sh @@ -1,6 +1,6 @@ -#!/bin/bash +#!/usr/bin/env bash -curl -sL https://git.schroedercity.com/voltron/Misc-Scripts/raw/master/colors.inc +source 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]}"