I've been trying to assign multiple files to a single file-handle. And from there process the entire filehandle to look for a certain pattern and then write that to FIN_RESULTS.
Linux
exp files
my/dir1/RESULTS
my/dir2/RESULTS
etc.
Here was my awkward fumble of an attempt
open (FIN_RESULTS, ">", "FIN_RESULTS.txt") or die $!;
open(RESULTS, "-|"," find my/ -name RESULTS -print0 | xargs -0 cat");
while(<RESULTS>){
if(/match_something/){
do some commands;
print FIN_RESULTS $_;
}
close FIN_RESULTS;
close RESULTS;
But I just end up overwriting the perl script itself with the ls of the current directory.
Thanks for the help!!!!! I was able to implement what I originally had in mind.
I have a second question is it possible to implement the find in such a way that it looks through certain directories only?
Such as if I have
my/abc_dir1/RESULTS
my/dsa_dir2/RESULTS
my/afx_dir3/RESULTS
but I only want to search through dir2 and dir3.
@array1 = qw( dir2 dir3);
foreach $array1(@array1)
{ open(RESULTS, "-|"," find my/*$array1 -name RESULTS -print0 | xargs -0 cat");
}
but I get this error, xargs: cat: terminated by signal 13. So it's not allowed to reopen a filehandle multiple times. Any suggestions as to what I can do?
Presuming you really want to do the external find:
Should do what you want.