This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Copyright (c) 2013 Maximilian Antoni | |
# | |
export TEST_COLOR_GREEN="\033[1m\033[32m" | |
export TEST_COLOR_RED="\033[1m\033[31m" | |
export TEST_COLOR_TITLE="\033[1m\033[36m" | |
export TEST_COLOR_OFF="\033[0m" | |
export TEST_SPACES=" " | |
export TEST_LINE="-----------------------------------------------------" |