检查文件是否在 OS X 上打开的快速方法
有没有一种快速方法可以检查文件句柄是否从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能想查看 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 .