var=$RANDOM creates random numbers but how can i specify a range like between 0 and 12 for instance?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
|
If you already have your random number, you can say
to get numbers from Edit:
If you want to produce numbers from
|
||||
|
|
|
An alternative using shuf available on linux (or coreutils to be exact): var=$(shuf -i0-12 -n1) |
|||
|
|
|
Here you go
I hope this helps. |
|||||||
|
|
This document has some examples of using this like RANGE and FLOOR that might be helpful: http://tldp.org/LDP/abs/html/randomvar.html |
|||
|
|