Help for this page
#...call to function &SomeFunction($a, $b, $c); ... @args = ("$program $a $b $c"); system(@args) == 0 or die "system @args failed: $?";
#...call to function &SomeFunction($a, $b, '$c'); ... @args = ("$program $a $b '$c'"); system(@args) == 0 or die "system @args failed: $?";