Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 02 Sep 1996 20:39:06 +0900
From:      Naohiro Shichijo <shichi@berkeley.race.u-tokyo.ac.jp>
To:        kuku@gilberto.physik.rwth-aachen.de
Cc:        multimedia@freebsd.org
Subject:   Re: sdr - sending video to www browser
Message-ID:  <199609021139.UAA02042@berkeley.race.u-tokyo.ac.jp>
In-Reply-To: Your message of "Mon, 2 Sep 1996 13:16:38 %2B0200"
References:  <199609021116.NAA06864@gilberto.physik.rwth-aachen.de>

next in thread | previous in thread | raw e-mail | index | archive | help
xm is this file.

Naohiro Shichijo

---cut------cut------cut------cut---
#!/bin/ksh

if [ $# != 1 ]
then
        echo "$0: No arguments" 2>&1
        exit 1
fi

pid=$(/usr/bin/ps -u $USER | grep netscape | awk '{print $1}')
pid=$(echo $pid | awk '{print $1}')
if [ ${pid:-no} = "no" ]
then
        echo No Netscape running 2>&1
        netscape -remote openURL\($1\)
        exit 0
fi

echo goto > /tmp/Mosaic.$pid
echo $1 >> /tmp/Mosaic.$pid
kill -USR1 $pid
exit 0
---cut------cut------cut------cut---

From: Christoph Kukulies <kuku@gilberto.physik.rwth-aachen.de>
Subject: sdr - sending video to www browser
Date: Mon, 2 Sep 1996 13:16:38 +0200
Message-ID: <199609021116.NAA06864@gilberto.physik.rwth-aachen.de>

> 
> sdr has (in the preferences menu) an option to send to the
> www broswer. Anyone having done this? There seems to be
> a xm script required whatever this may be.
> 
> --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de
> 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199609021139.UAA02042>