view bin/roll @ 11243:5c41fb3f6567

<oerjan> # Stolen from Roger9//`learn Bureaucracy (from French bureau, "burrow") is a political system in which squirrels rule the nation, and burrow their nuts.
author HackBot
date Wed, 22 Nov 2017 00:43:46 +0000
parents e037173e0012
children
line wrap: on
line source

#!/bin/bash
rolls="$*"
if [ "$rolls" = "" ] ; then rolls="1d6" ; fi

for i in $rolls
do
    if expr "$i" : ".*[dD].*" >& /dev/null
    then
        rollc=`echo "$i" | sed 's/[dD].*//'`
        diesz=`echo "$i" | sed 's/.*[dD]//'`
    else
        rollc=1
        diesz="$i"
    fi

    roll=0
    for (( j = 0; $j < $rollc; j++ ))
    do
        roll=$(( roll + (RANDOM % diesz) + 1 ))
    done

    echo -n $roll' '
done
echo