]> git.donarmstrong.com Git - bin.git/blob - common_subscriber
use the new format for capture in remember-mail
[bin.git] / common_subscriber
1 #!/usr/bin/perl
2 # common_subscriber given a set of Debian mailing lists, show the common subscribers
3 # and is released under the terms of the GNU GPL version 3, or any
4 # later version, at your option. See the file README and COPYING for
5 # more information.
6 # Copyright 2014 by Don Armstrong <don@donarmstrong.com>.
7
8
9 use warnings;
10 use strict;
11
12 use Getopt::Long;
13 use Pod::Usage;
14
15 =head1 NAME
16
17 common_subscriber -  given a set of Debian mailing lists, show the common subscribers
18
19 =head1 SYNOPSIS
20
21 common_subscriber [options]
22
23  Options:
24    --debug, -d debugging level (Default 0)
25    --help, -h display this help
26    --man, -m display manual
27
28 =head1 OPTIONS
29
30 =over
31
32 =item B<--debug, -d>
33
34 Debug verbosity. (Default 0)
35
36 =item B<--help, -h>
37
38 Display brief usage information.
39
40 =item B<--man, -m>
41
42 Display this manual.
43
44 =back
45
46 =head1 EXAMPLES
47
48 common_subscriber
49
50 =cut
51
52
53 use vars qw($DEBUG);
54 use IO::File;
55
56
57 my %options = (debug           => 0,
58                help            => 0,
59                man             => 0,
60               );
61
62 GetOptions(\%options,
63            'debug|d+','help|h|?','man|m');
64
65 pod2usage() if $options{help};
66 pod2usage({verbose=>2}) if $options{man};
67
68 $DEBUG = $options{debug};
69
70 my @USAGE_ERRORS;
71 if (not @ARGV) {
72     push @USAGE_ERRORS,"You must give some mailing lists";
73 }
74
75 pod2usage(join("\n",@USAGE_ERRORS)) if @USAGE_ERRORS;
76
77
78 my %subscribers;
79
80
81 for my $list (@ARGV) {
82     my $fh = IO::File->new('/var/list/'.$list.'/dist','r') or
83         die "Unable to open /var/list/$list/dist for reading: $!";
84     while (<$fh>) {
85         chomp;
86         next unless /\@/;
87         $subscribers{$_}++;
88     }
89 }
90
91 for my $subscriber (sort keys %subscribers) {
92     print $subscriber."\n" if $subscribers{$subscriber} eq scalar @ARGV;
93 }
94
95
96
97 __END__