You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
706 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# updatedb
## 说明
**updatedb命令** 用来创建或更新slocate命令所必需的数据库文件。updatedb命令的执行过程较长因为在执行时它会遍历整个系统的
目录树并将所有的文件信息写入slocate数据库文件中
说明slocate本身具有一个数据库里面存放了系统中文件与目录的相关信息
## 选项
```markdown
-o<文件>忽略默认的数据库文件使用指定的slocate数据库文件
-U<目录>更新指定目录的slocate数据库
-v显示执行的详细过程
```
## 实例
```bash
updatedb -U /usr/local/ # 更新指定命令的slocate数据库`-U`选项可以指定要更新slocate数据库的目录
```