<html><head><style type='text/css'>p { margin: 0; }</style></head><body><div style='font-family: Arial; font-size: 10pt; color: #000000'><P>I have a script that calls a second script (and passes some arguments to it).&nbsp;That works fine.&nbsp;I'm trying to get the second script to return some data back to the first script, but am having difficulty.&nbsp; I use the 'return' command to have the second script return control back the first script, but cannot seem to get any variable data to pass with it. It seems this is possible per the&nbsp;Grads documentation:</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>To return from a function, use the <CODE>return</CODE> command: 
<P></P>
<DD><CODE>return <I>expression</I></CODE> 
<P>The <CODE><I>expression</I></CODE> is optional; if not provided, a NULL string will be returned. (A null string is: '') The result of the function is the result of the expression specified on the return command.</P></DD>
<P>&nbsp;</P>
<P>In the second script, the last line is:</P>
<P>&nbsp;</P>
<P>return val1</P>
<P>&nbsp;</P>
<P>Where val1 is a variable string </P>
<P>&nbsp;</P>
<P>Just can't seem to get the first script&nbsp;to read the contents of val1.&nbsp;Could always write the data to a file, but am looking for something a little more elegant.</P>
<P><BR>&nbsp;</P>
<DIV><FONT size=2>Any help would be appreciated,<BR>Mark</FONT></DIV><BR></div></body></html>