I needed to go through a directory finding files
without a string in them, easy I thought, but kept getting the error message after 30 files.
Permission denied Found to be obsolete at find.pl line 13.
The file it stops at does not appear to be any different and there are sub directories which I don't need to search
heres the code
foreach my $file (readdir(DIR)){
if($file ne '.' and $file ne '..' and ! (-d $file)){
print "$file\n";
#below is line 13 ithe original program
open FILE, $dir.$file or die "$! $file";
foreach my $line (<FILE>){
if ($line =~ /use SBSDBRUN/){
$found = $file;
last;
}
}
if (! $found ){
push @files, $file;
}
undef ($found);
close FILE;
}
}
Thanks anyone for your help.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.