#!/bin/sh a=$1 b=$2 # base case if [ $b -eq 0 ] then echo $a exit fi echo $(./gcd.sh $b $(($a % $b)))