#!/bin/sh
#
#  inSymbolicLink - return true if the first arg is a symbolic link
#   
# Some systems use different args in test - sigh
#
# like SunOS !



if [ -h "$1" ]
then
	exit 0
else
	exit 1
fi
