I have a script for 4 systems commands, that are executed via the "system" command in Perl. My question is. since the way my script is now, the 4 commands are executed one after the other (since as we know Perl reads the script line-by-line), is there a way to execute ALL commands at the same time?
The commands are independent of each other, it's not like I need to run first command #1, then command #2 etc.