This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files

37 lines
468 B
Bash

#!/bin/sh
# Environmental setup
umask 022
export PATH="/bin:/usr/bin:/sbin:/usr/sbin"
# Color definitions
NORMAL="\\033[0;39m"
GREEN="\\033[1;32m"
YELLOW="\\033[1;33m"
RED="\\033[1;31m"
CYAN="\\033[1;36m"
BLUE="\\033[1;34m"
msg_red()
{
echo -e "${RED}${1}${NORMAL}"
}
msg_green()
{
echo -e "${GREEN}${1}${NORMAL}"
}
msg_blue()
{
echo -e "${BLUE}${1}${NORMAL}"
}
msg_yellow()
{
echo -e "${YELLOW}${1}${NORMAL}"
}
msg_cyan()
{
echo -e "${CYAN}${1}${NORMAL}"
}