Dateien des bash Tutorioals auf raspithek.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
614 B

#!/usr/bin/bash
export ANSI_FG_BLACK="\e[0;30m"
export ANSI_FG_RED="\e[0;31m"
export ANSI_FG_GREEN="\e[0;32m"
export ANSI_FG_YELLOW="\e[0;33m"
export ANSI_FG_BLUE="\e[0;34m"
export ANSI_FG_PURPLE="\e[0;35m"
export ANSI_FG_CYAN="\e[0;36m"
export ANSI_FG_WHITE="\e[0;37m"
export ANSI_NORMAL="\e[0m"
export ANSI_BG_BLACK="\e[40m"
export ANSI_BG_RED="\e[41m"
export ANSI_BG_GREEN="\e[42m"
export ANSI_BG_BROWN="\e[43m"
export ANSI_BG_BLUE="\e[44m"
export ANSI_BG_PURPLE="\e[45m"
export ANSI_BG_TURQUOISE="\e[46m"
export ANSI_BG_GREY="\e[47m"
export ANSI_STYLE_BOLD="\e[1;37m"
export ANSI_STYLE_UNDERLINE="\e[4;37m"