File: findbase

package info (click to toggle)
perl-tk 1%3A800.015-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 17,636 kB
  • ctags: 18,270
  • sloc: ansic: 195,135; perl: 37,385; makefile: 4,380; sh: 2,286; yacc: 762
file content (47 lines) | stat: -rwxr-xr-x 735 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/local/bin/perl -w

use File::Find;

my $area = "$ENV{'HOME'}/Tk/..";

@tk = qw(Tk-b11.02 Tk-b12);

sub findbase
{
 return unless (-f $_);
 my $file = "$File::Find::dir/$_";
 # return if $file =~ m,/pTk/,;
 my $t = -M $file;
 my $d = -100000;
 my $where = "Not found";
 foreach $dir (@tk)
  {
   my $path = "$area/$dir/$file";
   if (-f $path)
    {
     my $r = (-M $path)-$t;
     if ($r > $d)
      {
       $d = $r;
       $where = $path;
      }
    }
  }
  if ($d > 0)
   {
    my $code = system("merge",$_,$where,"$area/Tk400.200/$file");
    if ($code)
     {
      warn "Overlaps in $file\n";
      print "$file\n";
     }
   }
  else
   {
    warn "$file $d $where\n" if ($d > -100000);
   }
}



find(\&findbase,".");