使用 shark 启动带有参数和配置文件的进程

发布于 2024-10-07 21:55:49 字数 240 浏览 4 评论 0原文

我需要使用 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 技术交流群。

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

发布评论

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

评论(1

我的鱼塘能养鲲 2024-10-14 21:55:49

这不是“程序的参数”,而是 shell 管道。您可能需要使用括号来明确事情应该发生的顺序,例如,也许像

$ shark ( shortest-path < input-ref-littleendian | diff -u - output-ref )

我无法访问鲨鱼,所以我无法验证这一点。

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

$ shark ( shortest-path < input-ref-littleendian | diff -u - output-ref )

I don't have access to shark so I cannot verify this.

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