xref: /original-bsd/games/wargames/wargames.sh (revision 48cf0a37)
1#!/bin/sh -
2#
3# Copyright (c) 1985, 1993
4#	The Regents of the University of California.  All rights reserved.
5#
6# %sccs.include.redist.sh%
7#
8#	@(#)wargames.sh	8.1 (Berkeley) 05/31/93
9#
10echo -n "Would you like to play a game? "
11read x
12
13if [ -f /usr/games/$x ] ; then
14	tput cl
15	exec /usr/games/$x
16else
17	echo "Funny, the only way to win is not to play at all."
18fi
19exit 0
20