@@ -0,0 +1,18 @@
#: /bin/bash
#
if [ $# -ne 2 ] ; then
echo "gimme a min and max"
exit 1
fi
min=$1
max=$2
i=0
v=$RANDOM
while [ $v -gt $max -o $v -lt $min ] ; do
let i++
done
echo "$v obtenu en $i itération(s)"
The note is not visible to the blocked user.