Help for this page

Select Code to Download


  1. or download this
    for my $db (keys %{$db_ds}) {
      ...figure out which table to dump, etc...
      system("$cmd > $dumpfile &");
    }
    
  2. or download this
    for my $db (keys %{$db_ds}) {
      ...figure out which table to dump, etc...
    ...
    # now wait for all the children to finish
    
    1 while (wait > 0);