#!/bin/sh #The real sh not with bash extensions #for testing use dash as interpreter because sh is often simlinked to bash bottles(){ if test $1 -eq 1 then echo 1 bottle elif test $1 -eq 0 then echo no more bottles else echo $1 bottles fi } i=99 until test $i -eq 0 do ec