blob: 2aa21e19d8433c97443bdd3095b18e40880d67f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
$OpenBSD: OpenBSD::PkgSpec.pod,v 1.2 2005/02/28 14:30:01 espie Exp $
=head1 NAME
OpenBSD::PkgSpec - C<packages-specs(7)> handling
=head1 SYNOPSIS
use OpenBSD::PkgSPec;
@sublist = OpenBSD::PkgSpec::match($pattern, @list);
=head1 DESCRIPTION
C<OpenBSD::PkgSpec> is the canonical interface to C<packages-specs(7)>
handling.
A package specification C<$pattern> is a string that can be used to
extract matching package names from a C<@list>. The resulting list
C<@sublist> will only hold the package names that match the specification.
For performance reason, the result may contain duplicates.
|