Files
heimdal/appl/kx/rxterm.in
Assar Westerlund fc860dce60 Add options: -l username, -r args_to_rsh, and -x args_to_xterm
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@976 ec53bebd-3082-4978-b11e-865c3cabbd6b
1996-11-16 16:30:29 +00:00

35 lines
734 B
Bash

#!/bin/sh
# $Id$
#
usage="Usage: $0 [-l username] [-r rsh_args] [-x xterm_args] host"
while true
do
case $1 in
-l) rsh_args="${rsh_args} -l $2 "; title="${2}@"; shift 2;;
-r) rsh_args="${rsh_args} $2 "; shift 2;;
-x) xterm_args="${xterm_args} $2 "; shift 2;;
-*) echo "$0: Bad option $1"; echo $usage; exit 1;;
*) break;;
esac
done
if test $# -lt 1; then
echo "Usage: $0 host [arguments to xterm]"
exit 1
fi
host=$1
title="${title}${host}"
shift
bindir=%bindir%
pdc_trams=`dirname $0`
PATH=$pdc_trams:$bindir:$PATH
export PATH
set -- `kx $host`
if test $# -ne 3; then
exit 1
fi
pid=$1
disp=$2
auth=$3
kill -USR1 $pid
rsh $rsh_args $host "env DISPLAY=$disp XAUTHORITY=$auth xterm -T $title -n $title $xterm_args &"