Codebase list debian-goodies / debian/0.36 dglob
debian/0.36

Tree @debian/0.36 (Download .tar.gz)

dglob @debian/0.36raw · history · blame

#!/bin/sh -e

# dglob - Expand package names matching a pattern and conditions

# Copyright (C) 2001 Matt Zimmerman <mdz@debian.org>

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
#

ARGS=`getopt -o af0reiXv -n dglob -- "$@"`
eval set -- "$ARGS"


filter="grep-dctrl -FStatus ' installed'"
expand="cat"
grep_dctrl_options=""
while true; do
    case "$1" in
        -a) filter="cat"  ; shift ;;
        -0) SEP=0 ; shift ;;
        -r|-e|-i|-X|-v) grep_dctrl_options="$grep_dctrl_options $1"; shift ;;
        -f) expand="xargs dpkg --listfiles | perl -nl${SEP}e 'print if -f'"
            shift
            ;;
        
        --) shift ; break ;;
    esac
done

# Does the package exist?
packages=`eval $filter /var/lib/dpkg/status | grep-dctrl -PnsPackage $grep_dctrl_options "$1"`
if [ -z "$packages" ] ; then
	exit 1
fi

eval $filter /var/lib/dpkg/status | grep-dctrl -PnsPackage $grep_dctrl_options "$1" |
(eval $expand)