if test $# -lt 2
then
    echo Usage: link link-name resolution-name
else
   echo $2 > $1.lk
   shift; shift
   if test $# -ne 0
   then
      link $*
   fi
fi
