#!	/bin/sh

third ()
{
	echo $3
}

if [ $# -gt 0 ]; then
	case $1 in
	-r|--release)
		echo "$(third `cat /proc/version`)"
		;;
	-s|--sysname)
		echo "Linux"
		;;
	esac
else
	echo "Linux"
fi
exit 0
