#!/bin/ksh one=1 two=2 three=`/usr/bin/expr $one + $two` if [ $three -eq 3 ] then echo "Three = $three" else echo "Error" fi