in reply to Passing Command line values from Perl to Sh via system()
$testprog = 'testprog'; $a = 1; $b = 2; $c = 'This is a test'; system $testprog, $a, $b, $c; [download]
-- Randal L. Schwartz, Perl hacker