#!/bin/sh
#  comp - comparison demo

x=500
y=51

if(test $x \> $y)
then
  echo $x \> $y as strings
else
  echo $x \< $y as strings
fi

if(test $x -gt $y)
then
  echo $x \> $y as numbers
else
  echo $x \< $y as numbers
fi



