当前工作目录的 Unix 定位命令

发布于 2024-11-11 09:55:48 字数 164 浏览 3 评论 0原文

Unix 中的 locate 命令将返回与给定属性相关的路径(例如,找到 abc_file)。在当前工作目录结构中查找文件的命令是什么?

The locate command in Unix will return the path related to the attribute given (for example, locate abc_file). What is the command to locate a file in the present working directory structure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

江南烟雨〆相思醉 2024-11-18 09:55:48

如果您使用通配符(如 *),locate 会将模式视为绝对路径。因此你可以这样做:

locate "$PWD*/abc_file"

这将找到你的$PWD及其子文件夹下的所有文件abc_file(只要它们位于定位数据库中)。

If you use wildcards (as *) locate considers the pattern to be an absolute path. Therefore you could e.g. do:

locate "$PWD*/abc_file"

This will find all files abc_file under your $PWD and its subfolders (as long as they are in the locate database).

友欢 2024-11-18 09:55:48

另一方面,您也可以始终使用旧式 find

find . -name abc_file

On the other hand you can also always use oldschool find:

find . -name abc_file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文