Sophie

Sophie

distrib > Mageia > 5 > i586 > by-pkgid > 6c8b012174e54e5017a465ccbeb274ce > files > 39

bash-doc-4.3-48.2.mga5.i586.rpm

# Who said shells can't use recursion?  Here is a factorial function.
# You call it with a number as an argument, and it returns the factorial
# of that number.

fact ()
{
    local num=$1;
    if [ "$num" = 1 ] ; then
        echo 1
        return ;
    fi;
    echo $(( $num * $(fact $(( $num - 1 )) ) ))
}