macOS 上的搜索功能不太好用,搜的太慢。
如果定时每小时把所有文件路径写到一个文件里,就可以搜索的很快了。
给大家分享我写的 crontab
0 * * * * find /Users/xxx
-path '/Users/xxx/Library/Metadata' -prune -o
-path '/Users/xxx/Library/Application Support/Google/Chrome' -prune -o
-path '/Users/xxx/Library/Caches' -prune -o
-type f -a
-print0 |
xargs -0 ls -lh |
awk '{print $5,"@",substr($0,index($0,$9))}'
> /Users/xxx/file_and_size.txt
阅读全文: http://hhwyz.com/2022/04/27/%E5%BF%AB%E9%80%9F%E6%90%9C%E7%B4%A2%E6%96%87%E4%BB%B6.html
1
poison123 2022-04-27 17:50:25 +08:00 via iPhone
|
2
junas7 2022-04-27 18:16:00 +08:00
下个 everything ?
|
3
junas7 2022-04-27 18:17:02 +08:00
哈哈哈没注意看描述,everything 用不了
|
4
err1y 2022-04-27 19:00:29 +08:00 via iPhone 1
可以用 locate 和 updatedb ,效果是一样的
定时每小时执行 updatedb |
5
pansongya 2022-04-28 12:18:27 +08:00
可以把 node_modules 这类 排除一下吗
|