]> git.donarmstrong.com Git - debhelper.git/blob - dh_listpackages
Apply manual pages conventions
[debhelper.git] / dh_listpackages
1 #!/usr/bin/perl -w
2
3 =head1 NAME
4
5 dh_listpackages - list binary packages debhelper will act on
6
7 =cut
8
9 use strict;
10 use Debian::Debhelper::Dh_Lib;
11
12 =head1 SYNOPSIS
13
14 B<dh_listpackages> [S<I<debhelper options>>]
15
16 =head1 DESCRIPTION
17
18 B<dh_listpackages> is a debhelper program that outputs a list of all binary
19 packages debhelper commands will act on. If you pass it some options, it
20 will change the list to match the packages other debhelper commands would
21 act on if passed the same options.
22
23 =cut
24
25 init();
26 inhibit_log();
27 print join("\n",@{$dh{DOPACKAGES}})."\n";
28
29 =head1 SEE ALSO
30
31 L<debhelper(7)>
32
33 This program is a part of debhelper.
34
35 =head1 AUTHOR
36
37 Joey Hess <joeyh@debian.org>
38
39 =cut