[Date Prev] [Date Next] [Thread Prev] [Thread Next] Date Index Thread Index Search archive:
Date:Mon Mar 31 15:18:25 1999 
Subject:Re: Invoking POP11 From a Script 
From:Stuart I Reynolds 
Volume-ID:990331.01 

Dave FitzGerald wrote:
> 
> Matthew J Todd wrote:
> >
> > -- I am tyring to write a small script file which will xon to another
> > machine and then run a pop11 program without me having to type in the
> > command e.g.
> 
> This should work fine. You need quotes around the command you want to
> run. I can't test it since you've protected your file, but let me know
> if it doesn't.
> 
> #!/bin/sh
> 
> xon betty-lou
> '/bham/common/com/packages/poplog/alpha15.5.du.v0/pop/pop/pop11 <
> /home/students/csai96/mjt/project/2client/2_high.p &'
> 

You can also use:

 rsh betty-lou cmd

if you don't want the extra shell window.

Stuart