/usr/bin/lbdbq is in lbdb 0.38ubuntu1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | #! /bin/sh
#
# Copyright (C) 1998-2000 Thomas Roessler <roessler@guug.de>
# 1998-2007 Roland Rosenfeld <roland@spinnaker.de>
#
# 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 of the License, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301,, USA.
#
# $Id: lbdbq.sh.in,v 1.27 2007-05-20 13:00:44 roland Exp $
LBDB_VERSION=0.38ubuntu1
prefix=/usr
exec_prefix=${prefix}
libdir=${prefix}/lib/lbdb
sysconfdir=/etc
METHODS="m_inmail m_passwd m_muttalias m_pine m_gnomecard m_bbdb m_wanderlust m_finger m_abook m_addr_email m_yppasswd m_getent m_gpg m_pgp5 m_pgp2 m_evolution m_fido m_palm m_ldap m_vcf"
MODULES_PATH=${prefix}/lib/lbdb
TAC=/usr/bin/tac
case "$1" in
-v|--version)
echo "lbdbq version $LBDB_VERSION"
exit 0
break;;
-h|--help)
PROG=`basename $0`
echo "Usage: $PROG 'something' search addresses matching 'something'"
echo " $PROG -v|--version print version of lbdbq"
echo " $PROG -h|--help this short help"
exit 0
break;;
esac
. $libdir/lbdb_lib
tmpdir=${TMPDIR-/tmp}/query.`hostname`.$$
mkdir $tmpdir || exit 1
trap "rm -rf $tmpdir ; trap '' 0; exit 1" 0 1 2 3 15
trap "rm -rf $tmpdir ; trap '' 0" 0
collection=$tmpdir/coll
for conffile in $sysconfdir/lbdb.rc $HOME/.lbdbrc \
$HOME/.lbdb/lbdbrc $HOME/.lbdb/rc ; do
if test -f $conffile ; then
. $conffile
fi
done
for method in $METHODS ; do
for CURRENT_MODULE_DIR in $MODULES_PATH ; do
if test -f $CURRENT_MODULE_DIR/$method ; then
. $CURRENT_MODULE_DIR/$method
break
fi
done
done
for method in $METHODS ; do
eval ${method}_query \""$@"\" >> $collection || true
done
case "${KEEP_DUPES:-}" in
true|yes)
MUNGE=cat
MUNGE_KEEPORDER=cat
;;
*)
MUNGE=$libdir/munge
MUNGE_KEEPORDER=$libdir/munge-keeporder
;;
esac
case "${SORT_OUTPUT:-}" in
false|no)
$MUNGE_KEEPORDER $collection | $TAC > $collection.uniq
;;
*name)
$MUNGE $collection | sort -f -k2 > $collection.uniq
;;
reverse_comment)
$MUNGE $collection | sort -f -k3 -t' ' -r > $collection.uniq
;;
comment)
$MUNGE $collection | sort -f -k3 -t' ' > $collection.uniq
;;
*)
$MUNGE $collection | sort -f > $collection.uniq
;;
esac
lines=`wc -l $collection.uniq | awk '{print $1}'`
if [ $lines = "0" ]
then
echo "lbdbq: no matches"
exit 1
else
echo "lbdbq: $lines matches"
fi
cat $collection.uniq
|