23 lines
379 B
Bash
23 lines
379 B
Bash
#!/bin/bash
|
|
|
|
green=$'\e[0;32m'
|
|
red=$'\e[0;31m'
|
|
blue=$'\e[0;34m'
|
|
white=$'\e[1;37m'
|
|
black=$'\e[0;30m'
|
|
yellow=$'\e[0;33m'
|
|
purple=$'\e[0;35m'
|
|
cyan=$'\e[0;36m'
|
|
orange=$'\e[33;40m'
|
|
|
|
|
|
bold_green=$'\e[1;32m'
|
|
bold_red=$'\e[1;31m'
|
|
bold_blue=$'\e[1;34m'
|
|
bold_yellow=$'\e[1;33m'
|
|
bold_purple=$'\e[1;35m'
|
|
bold_cyan=$'\e[1;36m'
|
|
bold_orange=$'\e[1;33;40m'
|
|
|
|
normal=$'\e[00m'
|
|
reset_color=$'\e[39m' |