Mac | Linux | 搜索神器

 

搜索历史文件真的是最基本的需求,听说everything是个好东西,但Mac平台自带的splotlight search已经足够好用,直达文件。

 

Linux我则不太会搜索,find命令有点复杂,最近无意搜索Linux平台是否有类似everything的工具,还真发现了一个非常活跃的fzf工具,非常好用。

 

https://github.com/junegunn/fzf#installation

 

快速安装

git clone --depth 1 https://github.com/junegunn/fzf.git ~/.fzf
~/.fzf/install

  

快速搜索

find * -type f | fzf > selected

  

默认还支持模糊搜索

 

设置一个alias可以快速搜索

alias search='find * -type f | fzf > selected

  

突然发现自己无敌了~

 

posted @ 2022-08-11 11:10  Life·Intelligence  阅读(153)  评论(0编辑  收藏  举报
TOP