9 lines
146 B
Plaintext
Executable File
9 lines
146 B
Plaintext
Executable File
function get_random_number
|
|
{
|
|
# This function gets the next random number from the
|
|
# $RANDOM variable. The range is 0 to 32767.
|
|
|
|
echo "$RANDOM"
|
|
}
|
|
|