2 # paclist - List all packages installed from a given repo
4 # Copyright (C) 2008 Dan McGee <dpmcgee@gmail.com>
5 # Copyright (C) 2011 Dave Reisner <dreisner@archlinux.org>
7 # This program is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU General Public License
9 # as published by the Free Software Foundation; either version 2
10 # of the License, or (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 declare -r myname
='paclist'
22 export TEXTDOMAIN
='pacman'
23 export TEXTDOMAINDIR
='/usr/share/locale'
25 # determine whether we have gettext; make it a no-op if we do not
26 if ! type gettext &>/dev
/null
; then
32 if [[ -z $1 ||
$1 = -@
(h|
-help) ]]; then
33 printf '%s - List all packages installed from a given repo\n' "$myname"
34 printf 'Usage: %s <repo>\n' "$myname"
35 printf 'Example: %s testing\n' "$myname"
39 printf -v installed
'[%s]' "$(gettext installed)"
40 pacman
-Sl $1 |
awk -v i
="$installed" '$NF == i { print $2,$3 }'
42 # exit with pacman's return value, not awk's
45 # vim: set ts=2 sw=2 noet: