strace -feopen 的等效项命令>在 Mac OS X 上
这对于调试很有用(因此与编程相关)。在linux上,我们可以使用该命令
strace -feopen python myfile.py
来找出加载了哪些python模块和共享对象。 macOS X 上是否有等效的单行代码?
This is useful for debugging (hence programming related). On linux, we can use the command
strace -feopen python myfile.py
to figure out which python modules and shared objects are loaded. Is there an equivalent one-liner on macOS X?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你的意思是
strace -fetrace=open
?I suppose you meant
strace -fetrace=open
?