9f081fbbb8
--HG-- extra : convert_revision : 475dc84aeee82fb5cd414025d16c3d7451e3b8bf
7 lines
101 B
Bash
Executable File
7 lines
101 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Update the "locate" database
|
|
if [ -x /usr/bin/updatedb ]; then
|
|
/usr/bin/updatedb
|
|
fi
|