in reply to Re: Launching multiple programs from Perl script
in thread Launching multiple programs from Perl script

Just as short but makes for a more intuitive process relationship---all $cmdX processes are children of the script instead of $cmd3 being a child of $cmd2 which is a child of $cmd1:
fork or exec $cmd1; fork or exec $cmd2; fork or exec $cmd3;