6 lines
101 B
Bash
Executable file
6 lines
101 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Update the "locate" database
|
|
if [ -x /usr/bin/updatedb ]; then
|
|
/usr/bin/updatedb
|
|
fi
|