Help for this page

Select Code to Download


  1. or download this
    # 813119.pl:
    my @args=(0);
    my $ filename = "ABC.pl";
    @args = ("$filename com1@115200 65");
    system(@args) == 0 or die "system @args failed: $?";
    
  2. or download this
    # ABC.pl:
    print join( ' / ', @ARGV), "\n";
    
  3. or download this
    com1 / 65
    
  4. or download this
    @args = ("$filename com1\@115200 65");
    
  5. or download this
    com1@115200 / 65