useful shell scripting trick:
$ set -- `uname -a`
then variables $1 through $n are set to the fields of the back ticked command, in this case:
$ echo $1
SunOS
$ echo $2
booger
$ echo $3
5.7
etc. neat. saves having to parse out the fields, or use awk or something.