(2007-04-11) Kable-distro

This commit is contained in:
2007-04-11 00:00:00 +02:00
commit 85f73f180f
548 changed files with 51134 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#!/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}"
}