URI:
       tMerge pull request #93 from gdrooid/master - tomb - the crypto undertaker
  HTML git clone git://parazyd.org/tomb.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 97a05c4f3b531f1e2674fc18dcd0b36d5a91419c
   DIR parent f872f9f3d3d2f43e74bbd23e65dec50f5b7fee06
  HTML Author: Jaromil <jaromil@dyne.org>
       Date:   Fri, 31 May 2013 05:36:25 -0700
       
       Merge pull request #93 from gdrooid/master
       
       Fixed "tomb search" to work with mlocate tools (redhat)
       Diffstat:
         M tomb                                |       7 ++++---
       
       1 file changed, 4 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/tomb b/tomb
       t@@ -1540,7 +1540,8 @@ search_tombs() {
            mounted_tombs=(`list_tomb_mounts $1`)
            { test ${#mounted_tombs} = 0 } && {
                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
                xxx "checking for index: ${t}"
                mapper=`basename ${t[(ws:;:)1]}`
       t@@ -1548,8 +1549,8 @@ search_tombs() {
                tombmount=${t[(ws:;:)2]}
                if [ -r ${tombmount}/.updatedb ]; then
                    say "Searching in tomb $tombname"
       -            locate -d ${tombmount}/.updatedb -e -i ${=PARAM}
       -            say "Matches found: `locate -d ${tombmount}/.updatedb -e -i -c ${=PARAM}`"
       +            locate -d ${tombmount}/.updatedb -e -i ${=@}
       +            say "Matches found: `locate -d ${tombmount}/.updatedb -e -i -c ${=@}`"
                else
                    no "skipping tomb $tombname: not indexed"
                    no "run 'tomb index' to create indexes"