Skip to content

Instantly share code, notes, and snippets.

View ColinHeathman's full-sized avatar

Colin Heathman ColinHeathman

View GitHub Profile
#!/bin/bash
set -Eeuo pipefail
# Set up console colors
YELLOW='\033[1;33m'
RED='\033[1;31m'
CLEAR='\033[0m'
msg() {
echo >&2 -e "${YELLOW}${1-}${CLEAR}"