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