2
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
4
# Zeloc: User friendly frontend for "locate". This program is written in Bash
5
# and uses Zenity for user interactions.
7
# Author: v0.1 2009-12-21 Flavio Waechter, poven@foray.ch
8
# Website: https://launchpad.net/zeloc
10
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
12
# This program is free software: you can redistribute it and/or modify
13
# it under the terms of the GNU General Public License as published by
14
# the Free Software Foundation, either version 3 of the License, or
15
# (at your option) any later version.
17
# This program is distributed in the hope that it will be useful,
18
# but WITHOUT ANY WARRANTY; without even the implied warranty of
19
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20
# GNU General Public License for more details.
22
# You should have received a copy of the GNU General Public License
23
# along with this program. If not, see http://www.gnu.org/licenses/gpl.txt.
25
# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
27
updatedbTime=$(ls -l /var/lib/mlocate | awk '{print $6 " " $7}')
29
function check_dependencies()
31
if [ -x /usr/bin/zenity ]; then
32
echo "[x] Zenity installiert"
34
echo "[!!] Error: Bitte zuerst Zenity installieren!"
39
function check_last_update()
41
zenity --question --title="Locate Datenbank updaten" \
42
--text="Letztes Update der \"locate\" Datenbank war am: \n$updatedbTime \\n
43
Soll \"updatedb\" durchgeführt werden?"
45
if [ "$?" = -1 ]; then