Voting

Category

real language

Bookmarking

Del.icio.us Digg Diigo DZone Earthlink Google Kick.ie
Windows Live LookLater Ma.gnolia Reddit Rojo StumbleUpon Technorati

Language Korn Shell

Date:04/20/05
Author:Dave Plonka
URL:n/a
Comments:1
Info:n/a
Score: (3.01 in 142 votes)
Yet another UN*X shell.

#!/bin/ksh
# Korn shell version of 99 Bottles
# Dave Plonka - plonka@carroll1.cc.edu

typeset -i n=99
typeset bottles=bottles
typeset no

while (( n ))
do
   print "${n?} ${bottles?} of beer on the wall,"
   print "${n?} ${bottles?} of beer,\ntake one down, pass it around,"
   n=n-1
   case ${n?} in
   0)
      no=no
      bottles=${bottles%s}s
      ;;
   1)
      bottles=${bottles%s}
      ;;
   esac
   print "${no:-${n}} ${bottles?} of beer on the wall.\n"
done

exit

Download Source | Write Comment

Alternative Versions

Comments

>>  cris said on 01/20/06 18:34:08

cris i love this!

Download Source | Write Comment

Add Comment

Please provide a value for the fields Name, Comment and Security Code.
This is a gravatar-friendly website.
E-mail addresses will never be shown.
Enter your e-mail address to use your gravatar.

Please don't post large portions of code here! Use the form to submit new examples or updates instead!

Name:

eMail:

URL:

Security Code:
  
Comment: