释义 |
1 ?名称对象 ...库内容 ,步骤是设置PropertySet 连接属性,创建工作空间工厂,根据连接信息打开工作空间,更加数据对象名称获取名称对象(IName),从名称对象中获取目标数据。 2 ?搜索 ...等属性搜索 根据文件类型搜索,如普通文件、目录、socket文件等(-type) 指定搜索深度(-maxdepth) 大小写不敏感搜索(-iname) 搜索时排除路径(-prune) 对匹配的文件调用其他命令处理(-exec) 要将 find 匹配的文件进行进一步的处理,有两种常见方法: 通... 3 ?名称 包含食材编号(IId), 食材名称(IName), 食材单位(IUnit), 安全存量(ISafeQty), 安全警示(ISafeEnable), 其中食材编号为唯一。
- 1
To find all songs with any variant of the string "music" in it, you must use -iname *music*. 要查找名称中包含字符串“music”的任何变体的所有歌曲,您必须使用 -iname *music*。 - 2
To make find even more portable and akin to the search features of Spotlight, say, use -print0 -follow -iname pattern . 为了使得 find 更具可移植性,并且类似于 Spotlight 的搜索特性,那么应该使用 -print0 -follow -iname pattern 。 - 3
You can override case-sensitive matches with -iname, and you can traverse symbolic links with -follow. Here's an example that applies both options. 您可以使用- iname覆盖区分大小写的匹配,并且您可以使用- follow根据符号链接进行遍历。
|