#!/bin/sh # $Id: tellme,v 1.3 2001/10/01 16:32:10 cfox Exp $ if [ -z "$1" ]; then echo "Usage: $0 root|combo" exit 1 fi while [ "$1" ]; do case "$1" in root) if [ -f /etc/athena/rc.conf ]; then . /etc/athena/rc.conf if [ "${PUBLIC}" != "true" ]; then if [ -x /etc/athena/dialuptype ]; then echo "Note: This is a dialup. It does not have the" echo "Athena root password." else echo "Warning: This is a private workstation. It may not" echo "have the Athena root password." fi echo "" fi fi echo "The Athena root password is *." ;; combo) echo "The combo is *." ;; the\ [Uu]niverse) echo "The Universe is shaped like a banana." ;; [Uu]niverse) echo "Universe is something else entirely." ;; why) echo "because..." ;; 42) echo "What do you get when you multiply six by nine?" ;; off) echo "Fvck you." ;; *) echo "I don't know about "$1"." ;; esac shift done