parag <[EMAIL PROTECTED]> wrote:

> i want them to run them in parallel from a script
> 
> What I am doing is
> 
> foreach i (`cat q`)
> rsh $i -n <some command >
> end

Simple solution:

foreach i (`cat q`)
rsh $i -n <some command > &
end

regards Henrik
-- 
The address in the header is only to prevent spam. My real address is:
hc3(at)poolhem.se Examples of addresses which go to spammers:
[EMAIL PROTECTED] [EMAIL PROTECTED]

Reply via email to