- 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: $?";
- or download this
# ABC.pl:
print join( ' / ', @ARGV), "\n";
- or download this
com1 / 65
- or download this
@args = ("$filename com1\@115200 65");
- or download this
com1@115200 / 65