pactree: Add "--config" option
[pacman-ng.git] / contrib / paclist.in
blob84144f78e640621a17afb9efbf25865df5c1120f
1 #!/bin/bash
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 export TEXTDOMAIN='pacman'
21 export TEXTDOMAINDIR='/usr/share/locale'
23 # determine whether we have gettext; make it a no-op if we do not
24 if ! type gettext &>/dev/null; then
25 gettext() {
26 echo "$@"
30 if [[ -z $1 ]]; then
31 printf '%s - List all packages installed from a given repo\n' "${0##*/}"
32 printf 'Usage: %s <repo>\n' "${0##*/}"
33 printf 'Example: %s testing\n' "${0##*/}"
34 exit 1
37 printf -v installed '[%s]' "$(gettext installed)"
38 pacman -Sl $1 | awk -v i="$installed" '$NF == i { print $2,$3 }'
40 # exit with pacman's return value, not awk's
41 exit ${PIPESTATUS[0]}
43 # vim: set ts=2 sw=2 noet: