Newsgroups: comp.parallel.pvm
From: don@hp71550n.neuronet.pitt.edu (Donald Krieger)
Subject: pvm console batch mode
Organization: The Toads
Date: 2 May 1996 14:59:13 GMT
Message-ID: <4maik1$e49@toads.pgh.pa.us>

I'm not sure I completely understand your post.  However,
I use the PVM console from within a cshell script.

#! /bin/csh

#				Set the HOME environmental variable
#				so that pvm will use the temporary
#				.pvmrc placed there.
  setenv HOME /tmp
  set clobber

#				Place sample instructions in temporary
#				.pvmrc .
  echo "conf" > $HOME/.pvmrc
  echo "quit" >> $HOME/.pvmrc

#				Run pvm console to obtain a list of
#				all hosts with name HPPA and save the list
#				to temporary file /tmp/templist
#
  $PVM_ROOT/lib/pvm | grep HPPA > /tmp/templist

#				Remove temporary .pvmrc .
  rm $HOME/.pvmrc
.
.
.

Hope this is helpful.

				Don Krieger


