view bin/roll @ 11197:b0349228072c

<int-e> addquote <fungot> shachaf: i\'ve a long road ahead of me, it would be flattering. dudes got to act in accordance with my final wishes! they\'re the last things i ever did wish, and that makes me very sad to me!
author HackBot
date Tue, 26 Sep 2017 10:40:10 +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