in reply to Pipe DD command?
How would I enable my perl program to DD a file to all of those slots, ideally at the same time?The "cheapest" way would be to do it like on the (bash/zsh/ksh/...) command line, i.e. by running the command in the background:
However, if you need to monitor the child processes, for example by waiting for them, you need their PIDs. In this case, you have two options: Use the special form of system, which has the digit 1 as the first parameter, i.e.system("dd ... &");
or use fork and exec.my $child_pid=system(1,'dd','first_parameter',....);
|
|---|