http://qs321.pair.com?node_id=1091143

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hello Monks, I want to invoke multiple bash scrtips on different and not worry about the result values. for now `` is waiting for the script to end and get the results. I do not wanna do that.
`ssh -q -o ConnectTimeout=10 $usr1@host1 /tmp/start $V1 $v2`; `ssh -q -o ConnectTimeout=10 $usr2@host2 /tmp/start`;
Can you please help.