mirror of
https://git.dpkg.org/git/dpkg/dlocate.git
synced 2025-04-10 03:49:34 +00:00
9 lines
186 B
Bash
9 lines
186 B
Bash
#!/bin/sh
|
|
|
|
PATH="$PATH:/usr/bin:/bin:/usr/sbin:/sbin"
|
|
|
|
# update databases for both files and packages.
|
|
if command -v update-dlocatedb >/dev/null; then
|
|
/usr/sbin/update-dlocatedb -b
|
|
fi
|