Skip to content

Instantly share code, notes, and snippets.

View elliott2081's full-sized avatar
🎯
Focusing

David Elliott elliott2081

🎯
Focusing
  • Eugene Oregon
View GitHub Profile
@elliott2081
elliott2081 / gist:b26c71eeea0a2f3b1fb748bbff816efe
Created September 19, 2018 18:54 — forked from elucify/gist:c7ccfee9f13b42f11f81
BASH: set variables for ANSI text color escape sequences
RESTORE=$(echo -en '\033[0m')
RED=$(echo -en '\033[00;31m')
GREEN=$(echo -en '\033[00;32m')
YELLOW=$(echo -en '\033[00;33m')
BLUE=$(echo -en '\033[00;34m')
MAGENTA=$(echo -en '\033[00;35m')
PURPLE=$(echo -en '\033[00;35m')
CYAN=$(echo -en '\033[00;36m')
LIGHTGRAY=$(echo -en '\033[00;37m')
LRED=$(echo -en '\033[01;31m')