Linux Command
- 命令:
find
– walk a file hierarchy (遍历文件层次结构) ; - DESCRIPTION 描述: 在指定目录下查找文件和目录, 可以使用不同的选项来过滤和限制查找的结果 ;
Grammar Format
$ find <在哪个路径下查找> <可选参数…>
常用选项
-
-name <pattern>
: 目标文件的名称, 支持使用通配符 * 和 ? ; -
-type <file type>
: 目标文件的类型, Possible file types are as follows:file type desc b block special c character special d directory f regular file (普通文件, 包含可执行文件) l symbolic link (符号链接) p FIFO s socket
使用示例
在Xcode中找到符号化工具
// symbolicatecrash 适用于符号化 iOS15 及之前的系统产生的 crash report
$ find /Applications/Xcode.app -name symbolicatecrash -type f
// 系统输出如下
/Applications/Xcode.app/Contents/SharedFrameworks/DVTFoundation.framework/Versions/A/Resources/symbolicatecrash
Others
- 10 ways to use the Linux find command ;