bbbc0875aa
ok espie@
9 lines
164 B
Bash
9 lines
164 B
Bash
#! /bin/sh
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo "usage: ${0##*/} [-bcimSs] [-l limit] pattern ..."
|
|
exit 1
|
|
fi
|
|
|
|
exec /usr/bin/locate -d ${TRUEPREFIX}/share/pkglocatedb "$@"
|