Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

var=$RANDOM creates random numbers but how can i specify a range like between 0 and 12 for instance?

share|improve this question

5 Answers

up vote 3 down vote accepted

If you already have your random number, you can say

var=$RANDOM
var=$[ $var % 13 ]

to get numbers from 0..12.

Edit: If you want to produce numbers from $x to $y, you can easily modify this:

var=$[ $x + $var % ($y + 1 - $x) ]
share|improve this answer

Between 0 and 12 (included):

echo $((RANDOM % 13))
share|improve this answer

An alternative using shuf available on linux (or coreutils to be exact):

var=$(shuf -i0-12 -n1)

share|improve this answer

Here you go

echo $(( $RANDOM % 12 ))

I hope this helps.

share|improve this answer
Correction: $(( $RANDOM % 13 )) – Hai Vu May 13 '11 at 13:56
yes, agreed, thanks. I was so excited to get to answer an easy one first, I didn't test closely enough! Thanks for the 2 up-votes (whoever you are) ;-) – shellter May 13 '11 at 14:03
Note the inner $ is optional as non numeric strings found there cannot be but variable names. – jlliagre May 13 '11 at 14:45

This document has some examples of using this like RANGE and FLOOR that might be helpful: http://tldp.org/LDP/abs/html/randomvar.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.