summaryrefslogtreecommitdiff
path: root/bin/removelinks
blob: c5e80c119fafd51fd43409d998599af70628971e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env perl
use strict;
use warnings;

my $i;
my $package = shift or die('not enough arguments');
my $verbose = 1;
my $home = $ENV{HOME} || '/home/derf';
my @binaries;

opendir(BIN, "$home/bin");
@binaries = readdir(BIN);
closedir(BIN);

foreach(@binaries) {
	next if $_ eq '.';
	next if $_ eq '..';
	next unless (-l);
	if ((split(/\//, readlink))[2] eq $package) {
		unlink("$home/bin/$_");
		print "Removed $_\n" if $verbose;
	}
}