A: Variables

   1 #!/bin/bash
   2 
   3 ## Starting message
   4 echo "Welcome to the Guessing Game."
   5 
   6 ## Initialize our variables
   7 number=$RANDOM
   8 guess=0

Scripting_Bash_Intro/206 A: Variables (last edited 2009-09-08 13:43:39 by MarkSuter)