使用 shark 启动带有参数和配置文件的进程
我需要使用 shark 对 (cli) 应用程序进行采样,并向其传递参数,如下所示:
shortest-path <input-ref-littleendian|diff -u - output-ref
How can I do this with shark
? Shark 假设我需要传递给启动的 cli 应用程序的参数是针对 shark 本身,而不是针对进程。
I need to sample a (cli) application with shark and pass parameters to it like so:
shortest-path <input-ref-littleendian|diff -u - output-ref
How can I do this with shark
? Shark assumes that the parameters i need to pass to the launched cli app are for shark itself, not the process.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这不是“程序的参数”,而是 shell 管道。您可能需要使用括号来明确事情应该发生的顺序,例如,也许像
我无法访问鲨鱼,所以我无法验证这一点。
That's not "parameters to a program", that's a shell pipeline. You might need to use parenthesis to make it clear in which order things should happen, e.g. perhaps something like
I don't have access to shark so I cannot verify this.