Correct wargames quote, and while we are here be a little more selective

when checking if a game is valid (eg: '../../bin/csh')
This commit is contained in:
abs 1999-11-16 17:27:14 +00:00
parent 653c374a4c
commit 0e549049f7
1 changed files with 5 additions and 2 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh -
# $NetBSD: wargames.sh,v 1.2 1995/04/22 07:53:44 cgd Exp $
# $NetBSD: wargames.sh,v 1.3 1999/11/16 17:27:14 abs Exp $
#
# Copyright (c) 1985, 1993
# The Regents of the University of California. All rights reserved.
@ -37,10 +37,13 @@
echo -n "Would you like to play a game? "
read x
x=`echo $x | sed 's/[^a-z0-9]//g'`
if [ -f /usr/games/$x ] ; then
tput cl
exec /usr/games/$x
else
echo "Funny, the only way to win is not to play at all."
# Original quote "Strange game, the only winning move is not to play."
echo "Strange, the only winning move is not to play."
fi
exit 0