Language C Shell
Date: | 04/20/05 |
Author: | Anonymous |
URL: | n/a |
Comments: | 4 |
Info: | n/a |
Score: | (2.99 in 68 votes) |
#!/bin/csh # # C-Shell script version of 99 Bottles of Beer # set i = 100 while ($i > 0) echo -n $i " bottles of beer on the wall" echo $i " bottles of beer......" set i = `expr $i - 1` echo -n "take one down pass it around, " $i echo "bottles of beer on the wall" end #end of script
Download Source | Write Comment
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!
Comments
Rik Steenwinkel said on 01/14/07 22:37:45
Pretty dire; it doesn't even switch from the plural to the singular in the last verse.
Filippos said on 07/26/08 12:03:12
#!/bin/csh
#new version ...
#
# C-Shell script version of 99 Bottles of Beer
#
set i = 100
while ($i > 1)
echo -n $i " bottles of beer on the wall"
echo $i " bottles of beer......"
set i = `expr $i - 1`
echo -n "take one down pass it around, " $i
echo "bottles of beer on the wall"
end
echo -n $i " bottle of beer on the wall"
echo $i " bottle of beer......"
echo -n "take one down pass it around, "
echo "no more bottles of beer on the wall"
echo "No more bottles of beer on the wall, "
echo "no more bottles of beer."
echo "Go to the store and buy some more, "
echo "99 bottles of beer on the wall."
#end of script
Filippos said on 07/26/08 12:04:34
set i = 99
C-shell guru! said on 09/21/09 16:23:03
You don't need the expr rubbish (that's sooooooo bourne shell)
replace set i = `expr $i - 1`
with @i--