Merge pull request #93 from gdrooid/master

Fixed "tomb search" to work with mlocate tools (redhat)
This commit is contained in:
Jaromil 2013-05-31 05:36:25 -07:00
commit 97a05c4f3b

7
tomb
View File

@ -1540,7 +1540,8 @@ search_tombs() {
mounted_tombs=(`list_tomb_mounts $1`) mounted_tombs=(`list_tomb_mounts $1`)
{ test ${#mounted_tombs} = 0 } && { { test ${#mounted_tombs} = 0 } && {
die "I can't see any open tomb, may they all rest in peace." } die "I can't see any open tomb, may they all rest in peace." }
yes "Searching for: $fg_bold[white]${=PARAM}$fg_no_bold[white]" shift
yes "Searching for: $fg_bold[white]${=@}$fg_no_bold[white]"
for t in ${mounted_tombs}; do for t in ${mounted_tombs}; do
xxx "checking for index: ${t}" xxx "checking for index: ${t}"
mapper=`basename ${t[(ws:;:)1]}` mapper=`basename ${t[(ws:;:)1]}`
@ -1548,8 +1549,8 @@ search_tombs() {
tombmount=${t[(ws:;:)2]} tombmount=${t[(ws:;:)2]}
if [ -r ${tombmount}/.updatedb ]; then if [ -r ${tombmount}/.updatedb ]; then
say "Searching in tomb $tombname" say "Searching in tomb $tombname"
locate -d ${tombmount}/.updatedb -e -i ${=PARAM} locate -d ${tombmount}/.updatedb -e -i ${=@}
say "Matches found: `locate -d ${tombmount}/.updatedb -e -i -c ${=PARAM}`" say "Matches found: `locate -d ${tombmount}/.updatedb -e -i -c ${=@}`"
else else
no "skipping tomb $tombname: not indexed" no "skipping tomb $tombname: not indexed"
no "run 'tomb index' to create indexes" no "run 'tomb index' to create indexes"