检查文件是否在 OS X 上打开的快速方法

发布于 2024-10-19 02:36:52 字数 81 浏览 1 评论 0原文

有没有一种快速方法可以检查文件句柄是否从 os x 上的命令行关闭?

lsof 当然可以,但速度超级慢。

Is there a fast way to check if a file handle is closed from the command line on os x?

lsof works, of course, but is super slow.

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

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

发布评论

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

评论(1

禾厶谷欠 2024-10-26 02:36:52

您可能想查看 DTrace 系列 man dtrace

如果您只对纯粹的“文件操作”感兴趣,您应该看看 opensnoop,它基于 DTrace 构建,自 Mac OS X 10.6 起就包含在内。
您可以显示进程正在使用的所有文件(通过 -p pid 或 -n name)并使用 -f /path/to/file 监视文件。

You´ll probably want to check out the DTrace Family man dtrace.

If you´re only interested on pure "file actions" you should have a look at opensnoop, which builds on DTrace and has been included since Mac OS X 10.6.
You can show all file in use by a process (by -p pid or -n name) and watch files with -f /path/to/file .

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