#!/bin/sh if [ $# -ne 2 ] then echo "Expecting 2 arguments, only $# provided" exit 1 fi # return code is sum of two arguments RC=`expr $1 + $2` echo "Sum of $1 + $2 is $RC" exit $RC;