blob: daed67c17eac7a9dce77789baff8a227ede94310 (
plain) (
blame)
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
48
49
50
51
52
53
54
55
56
57
58
|
#!/usr/bin/env perl
use strict;
use warnings;
use File::Find;
use File::Basename qw/basename/;
#use File::Spec ();
use Cwd qw/realpath/;
use FindBin;
my $scripts_dir = $FindBin::Bin . '/irssi/scripts';
print "Cleanup....\n";
find(\&cleanup, "irssi/scripts/");
print "Scanning for new....\n";
find(\&wanted, '../');
print "Done\n";
sub cleanup {
my $file = $_;
my $path = $File::Find::name;
my $dir = $File::Find::dir;
# only process symlinks
my $abs_path = realpath($path); #File::Spec->rel2abs($path);
return unless defined $abs_path;
return unless (-l $abs_path);
print "Thinking about deleting $path\n";
}
sub wanted {
my $file = $_;
my $path = $File::Find::name;
my $dir = $File::Find::dir;
my $abs_path = realpath($path); #File::Spec->rel2abs($path);
#$abs_path = File::Spec->canonpath($abs_path);
return if $dir =~ /(?:test|docs)$/;
return unless $file =~ /\.pl$/;
return unless defined $abs_path;
return unless -f $abs_path;
print "Thinking about $scripts_dir/$file => $abs_path\n";
create_link($abs_path);
}
sub create_link {
my $target = shift;
my $name = basename($target);
my $link = $scripts_dir . '/' . $name;
my $ret = symlink($target, $link);
die "link creation failed - T: $target, L: $link" unless $ret;
}
|