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



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