Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

file::find ignore stderr

Status
Not open for further replies.

jrig

Technical User
Sep 5, 2006
36
US
Code:
#!/usr/bin/perl -w
use File::Find;
       
       
my @ar;
sub wanted {
        if ($_ eq "foo"){
                push @ar , $File::Find::name;
        }
}
find \&wanted , '/usr/home/';
       
        foreach $ln (@ar){
        if ($ln !~ /cd/){
#       print $ln."\n";
                        }
}
Presumably since I'm not root, I get the error can't cd to (blah blah). I'm only interested in files I can see, so how do I tell the script to disregard this message, I don't even want to see the message. I guess redirect to /dev/null somehow. Where/how? TIA-

Joe
 
You can put this in (above the "my @ar" line):
Code:
BEGIN{ open STDERR, ">/dev/null"; }
 
Or remove the -w switch from the shebang line and the warnings won't display while the script runs.
 
Thanks fellas-

Kevin, I may be misreading your reply, but I am still getting the error messages, I know that you can 'ignore' warnings in terms of specific modules or blocks of code, is that what you meant?

Ishnid, is STDERR being treated as a filehandle here? Does it need to be closed? Script seemed to hang a bit with 'BEGIN' in it. I re-wrote your solution just like I would any other filehandle and that worked too. Following this logic, could I use STDOUT as a varible, or maybe array in the script? Many thanks-
 
I think I was thinking wrong. Can't cd to blah is normally a fatal error, not a warning.

have you tried the:

no_chdir=>0

option with File::Find?
 
Any thoughts as to how to make file::find a bit more greedy? That is, if searching for '311', return:
311.mp3
311.txt
311.wma
(in other words, '311*')
etc...I swear I read the module documentation, couldn't find anything-
 
use a perl regexp:

Code:
if (/311\..*/) {
   print "Found a file with 311 in it: $_\n";
}



- Kevin, perl coder unexceptional!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top