Name: Anonymous 2009-09-21 19:23
#!/bin/sh
if [ $1 -lt 0 ]
then echo "$1 is a negative number"
elif [ $1 -eq 0 ]
then echo "$1 is number zero"
else echo "$1 is a positive number"
fi
if [ $1 -lt 0 ]
then echo "$1 is a negative number"
elif [ $1 -eq 0 ]
then echo "$1 is number zero"
else echo "$1 is a positive number"
fi