Help for this page

Select Code to Download


  1. or download this
    my @cmd = ($filename, 'com1@115200', '65');
    system({ $cmd[0] } @cmd) == 0
        or die("system @cmd failed: $?\n")
    
  2. or download this
    my @cmd = ($^X, $filename, 'com1@115200', '65');
    system({ $cmd[0] } @cmd) == 0
        or die("system @cmd failed: $?\n")