Help for this page

Select Code to Download


  1. or download this
    [Perl Program]
    $testprog = "testprog";
    ...
    $b=2;
    $c="This is a test";
    system($testprog $a $b $c)
    
  2. or download this
    [in Shell script "testprog"]
    a=$1
    ...
    echo $a = 1
    echo $b = 2
    echo $c = "This"