#!/bin/ksh
#
# $Revision: 1.4 $ $Date: 2012-07-26 17:11:48-04 $
# $Source: /home/vogelke/bin/RCS/rand,v $
# $Host: sys7.com $
# $UUID: 866292bd-22ad-3635-b449-fad35acdb4e3 $
#
#<rand: quickly generate a random number
# use set and echo to strip leading spaces.

set X $(/usr/bin/od -vAn -N4 -tu4 < /dev/urandom)
echo $2
exit 0
