diff options
author | Christian Neukirchen <chneukirchen@gmail.com> | 2015-01-08 11:48:46 +0100 |
---|---|---|
committer | Christian Neukirchen <chneukirchen@gmail.com> | 2015-01-08 11:48:46 +0100 |
commit | 5637c9384193ab58dd976ac8f388a3547d24489e (patch) | |
tree | 1558965bd64fa14ecca2c4639c6a8d52030477d3 /xlocate | |
parent | c820f72b1af215bdb4dd73377ac734722e8ad124 (diff) | |
download | xtools-5637c9384193ab58dd976ac8f388a3547d24489e.tar.gz xtools-5637c9384193ab58dd976ac8f388a3547d24489e.tar.xz xtools-5637c9384193ab58dd976ac8f388a3547d24489e.zip |
xlocate: use -u to create/update database.
Diffstat (limited to 'xlocate')
-rwxr-xr-x | xlocate | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/xlocate b/xlocate index 0b34fe0..1b3efff 100755 --- a/xlocate +++ b/xlocate @@ -1,14 +1,23 @@ #!/bin/sh -# xlocate PATTERN - locate files in all XBPS packages +# xlocate [-u | PATTERN] - locate files in all XBPS packages : ${XLOCATE_DB:=~/.cache/xlocate.db} +xupdatedb() { + echo "xlocate: reindexing database..." 1>&2 + xbps-query -Ro '*' | + sed 's/ *([^)]*)$//; s|: ||;' | + /usr/libexec/frcode >"$XLOCATE_DB" +} + +if [ "$1" = -u ]; then + xupdatedb + exit $? +fi + if [ -e "$XLOCATE_DB" ]; then - if [ "$XLOCATE_DB" -ot /var/db/xbps/http___repo_voidlinux_eu_current/*-repodata ] || [ ! -s "$XLOCATE_DB" ]; then - echo "xlocate: reindexing database..." 1>&2 - xbps-query --regex -Ro '' | - sed 's/ *([^)]*)$//; s|: ||;' | - /usr/libexec/frcode >"$XLOCATE_DB" + if find /var/db/xbps/ -name '*repodata' -newer "$XLOCATE_DB" | grep -q .; then + xupdatedb fi rx= case "$1" in |