#!/bin/bash

case $@ in
	bash) echo "Good choice, use tcsh";;
	tcsh) echo "Good choice, use bash";;
	Select|select|Rose|rose) echo "A CASE tool is for the whole SEG Project, not just for Christmas!";
	echo Select sucks, just less than ROSE;;
	life|LIFE|Life) echo "Choose Life, well i chose something different (Ewin put the Heroin Down!!)!";;
	cslib|CSLIB|CSLib|CSlib) echo "Choose CSLib, Choose Unreliable servers and a usable box! But Why?";;
	responsibility) echo "Is there a pay rise here?";;
	unix|UNIX) echo "But it is not open source, choose GNU/Linux instead" ;;
	Windows|WINDOWS|windows|XP) echo "Your Choice, read the licence... Oops, too late another of Bills Towl Boys! (ps - Terminal server may be quicker! ;)";;
	
	success) 	echo "                              You Fail it!";
				echo "                        - Your Skill Is Not Enough -";
				echo "                           - See You Next Time -";
				echo "                               - Bye-Bye! -";;
	*) 	if ls "/proc/self/fd/0" -l | grep -q -v "pts"; then
			FOO=`cat -s`;
			echo "Choose" $@ $FOO"! Choose something else!";
		else
			echo "Choose" $@"! Choose CSLib Instead!";	
		fi
		;;
esac
#if ls "/proc/self/fd/0" -l | grep -q -v "pts"; then
#	FOO=`cat -s`;
#	echo "Fuck" $@ $FOO"! Fuck that shit!";
#else
#	echo "Fuck" $@"! Fuck that shit!";	
#fi
