mirror of
https://github.com/NginxProxyManager/feature-parity.git
synced 2026-05-18 07:40:37 +00:00
12 lines
159 B
Bash
12 lines
159 B
Bash
#!/bin/bash
|
|
|
|
# Colors
|
|
BLUE='\E[1;34m'
|
|
CYAN='\E[1;36m'
|
|
GREEN='\E[1;32m'
|
|
RED='\E[1;31m'
|
|
RESET='\E[0m'
|
|
YELLOW='\E[1;33m'
|
|
|
|
export BLUE CYAN GREEN RED RESET YELLOW
|