mdfind命令就是Spotlight功能的终端界面
1 | mdfind -name "Photo 1.PNG" //搜索文件名Photo 1.PNG |
The Silver Searcher
https://github.com/ggreer/the_silver_searcher
1 | brew install the_silver_searcher //安装 |
使用
1 | Usage: ag [FILE-TYPE] [OPTIONS] PATTERN [PATH] |
常用命令行
1 | 常用参数 |
1 | ag 动画 //搜索当前路径带文件名或文件内容带“动画”文件 |
-c –count Only print the number of matches in each file.
匹配文件关键词个数
-g PATTERN Print filenames matching PATTERN
匹配文件
-l –files-with-matches Only print filenames that contain matches
只输出匹配内容//取相反结果 用大写-L
-o –only-matching Prints only the matching part of the lines
输出匹配所在行