]> git.donarmstrong.com Git - debhelper.git/blob - dh_listpackages
r496: * Man page cleanups, Closes: #119335
[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 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 print join("\n",@{$dh{DOPACKAGES}})."\n";
27
28 =head1 SEE ALSO
29
30 L<debhelper(1)>
31
32 This program is a part of debhelper.
33
34 =head1 AUTHOR
35
36 Joey Hess <joeyh@debian.org>
37
38 =cut