5 lines
80 B
Bash
5 lines
80 B
Bash
#! /bin/bash
|
|
|
|
# return a random number between 0 and 2
|
|
|
|
exit $(( $RANDOM % 3 )) |