12 lines
318 B
Bash
12 lines
318 B
Bash
#!/bin/bash
|
|
|
|
## These are the colors used throughout the script.
|
|
COL_RED='\e[1;31m%s\e[0m\n'
|
|
COL_GREEN='\e[1;32m%s\e[0m\n'
|
|
COL_YELLOW='\e[1;33m%s\e[0m\n'
|
|
COL_BLUE='\e[1;34m%s\e[0m\n'
|
|
COL_MAGENTA='\e[1;35m%s\e[0m\n'
|
|
COL_CYAN='\e[1;36m%s\e[0m\n'
|
|
COL_ORANGE='\e[38;5;166m%s\e[0m\n'
|
|
COL_LIGHT_BLUE='\e[38;5;111m%s\e[0m\n'
|