Help for this page

Select Code to Download


  1. or download this
    sub file_processing {
    $script = "/export/home/ssesar/Perl/another_script.pl -e";
    ...
    close FILE1;
    
    }
    
  2. or download this
    $open = "$script $arg1 $file1";
    open(FILE1, "$open |") or die "can't do it\n";
    
  3. or download this
    $open = "$script $arg2 $file2";
    open(FILE2, "$open |") or die "can't do it\n";
    
  4. or download this
    @array1 = @_;
    
  5. or download this
    @array2 = @_;