in reply to Parallel Execution Flows

See open or fork, or perlipc for a general introduction, but that should have been covered in your course material already. Personally, I prefer open for IPC, because it's mostly like backticks except that it's asynchronous.

Replies are listed 'Best First'.
Re^2: Parallel Execution Flows
by perlpal (Scribe) on Mar 08, 2010 at 09:38 UTC
    Thanks. When i replaced the backticks in the $sio_cmd with system, it worked for me.

      You didn't read the documentation I linked to. Your approach will sporadically fail as soon as there is more than one process with the name sio in it, for example grep sio will also match that. Please read open, fork and/or perlipc.