使用shell加速文件搜索


0

你知道用shell加速文件搜索的方法吗?

有很多可能性: findwhichwhereis,...

find 似乎是最有用的,但它很慢。也许,我不知道使用此功能的最佳方式。如何更快地找到文件?


可能更适合超级用户
Doug Harris

Answers:


2

whichwhereis 在你的路径中搜索可执行文件 - 如果你正在寻找一个程序以外的东西,这是一个非常重要的限制。

find 确实有很大的灵活性,但是当你在没有索引的帮助下运行它时它会执行搜索。

locate 因为它使用索引的文件数据库,所以工作得更快。不利的一面是它找不到比上一次数据库更新更新的文件。 db更新通常通过a定期完成 cron 工作。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.