in reply to Re: Passing Command line values from Perl to Sh via system()
in thread Passing Command line values from Perl to Sh via system()

What can I do in this case?
#...call to function &SomeFunction($a, $b, $c); #...in the function @args = ("$program $a $b $c"); system(@args) == 0 or die "system @args failed: $?";
...Do I change it to this?
#...call to function &SomeFunction($a, $b, '$c'); #...in the function @args = ("$program $a $b '$c'"); system(@args) == 0 or die "system @args failed: $?";
?