in reply to invoke muliplt bash scripts on different machine

If you do not want to capture the stdout or stderr from the commands, don't use backticks, use system instead.

If you do not want to wait for the process to finish, either fork at the local end or background at the remote end and detach.

  • Comment on Re: invoke multiple bash scripts on different machine