#! /bin/sh

if [ `basename $0` = "ssh-to" ] ; then
  echo "This script is not meant to be called as-is. Create a symlink to it with the"
  echo "name of a remote hostname in a directory contained in your path, and run the"
  echo "symlink (ex: ln -s $0 ~/bin/my-remote-host)."
  exit 1
fi

LANG=C ssh -X -C `basename $0` $*
