in reply to Re^3: sending data thru a sub routine
in thread sending data thru a sub routine
its hard to explain actually lol. All the files will be handled basically the same way as this subroutine above but will be a little bit different.psuedocode: open main file for parsing; #not file1 or file2 parse out each file within this file; when reach $file1 send to subroutine; when reach $file2 send to subroutine; exit script;
my $file1 = 'extracted/file1'; sub infile($file1); my $file2 = 'extracted/file2'; sub infile = 'extracted/file2';
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: sending data thru a sub routine
by Laurent_R (Canon) on May 12, 2014 at 06:15 UTC |