head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2001.10.23.14.25.03;	author ms;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Added script to tunnel the CDE front end through the X Server on dev30 via SSH.
@
text
@#!/bin/sh
hostname="`(uname -n) 2>/dev/null | awk '{ printf("%s", $1); }'`"
domainname=".`echo $host | cut -d. -f2-`"
host="`echo $hostname | cut -d. -f1`"
sshostname=$SSH_CLIENT
export DISPLAY=$sshostname:0.0
echo "Gruetzi miteinand $host, wird OpenPKG CDE/Motif GUI durch dev30 laufen."
ssh -n dev30 /e/dev/dev/com/opkgproto 1>/dev/null 2>&1 &
@
