jesuashok has asked for the wisdom of the Perl Monks concerning the following question:
I have a perl scrit which accepts directory path and filenames through different argument names. For example :-
In my script I would open the files as follows :-perl script_name.pl -dir "/home/test/input_dir" -file input_file_1 inp +ut_file_2 input_file_3
foeach my $file_names ( @file_names_passed ) { open ( FH , "$dir_path/$file_name) or die "$!"; # managed to do some operation on the file. close(FH); }
|
|---|