#!/usr/bin/sh

count=99
count2=`expr $count - 1`
echo "hello"
while [ $count -gt 0 ]
do
echo $count "bottles of beer on the wall.  " $count " bottles of beer.  If one of those bottles should happen to fall, " $count2 " bottles of beer on the wall."|write $1
count=`expr $count - 1`
count2=`expr $count - 1`
done

