将 jar 的一部分提取到路径

发布于 2024-09-26 15:47:22 字数 424 浏览 14 评论 0原文

我正在使用以下命令,我的目的是仅从中提取 DYEDistinctAppServer.topology discovery1-full-8.1.0-07-10-2010_1055.jar 位于 data/product/template-topologies/DYEDistinctAppServer.topology 路径。

命令:

jar -xf discovery1-full-8.1.0-07-10-2010_1055.jar -C data/product/template-topologies/DYEDistinctAppServer.topology

它没有提取文件,而是提示我错误地使用了该命令,并转储了所有各种选项的帮助。

是否存在语法错误,如用法部分所示。 我使用的是 AIX 操作系统。

谢谢。

I am using the follwing command and my intention is to extract only DYEDistinctAppServer.topology from
discovery1-full-8.1.0-07-10-2010_1055.jar at data/product/template-topologies/DYEDistinctAppServer.topology path.

Command:

jar -xf discovery1-full-8.1.0-07-10-2010_1055.jar -C data/product/template-topologies/DYEDistinctAppServer.topology

Instead of extracting the files, it prompts me that I am using the command incorrectly and dumps out the help with all the various options.

Is there any syntax error as it is shown in the usage part.
I am using AIX OS.

Thanks.

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

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

发布评论

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

评论(1

2024-10-03 15:47:22

选项 -C 用于设置 jar 运行的目录,而不是 JAR 文件中的路径。尝试:

jar -xf discovery1-full-8.1.0-07-10-2010_1055.jar data/product/template-topologies/DYEDistinctAppServer.topology

The option -C is to set the directory in which jar should run, not paths in the JAR file. Try:

jar -xf discovery1-full-8.1.0-07-10-2010_1055.jar data/product/template-topologies/DYEDistinctAppServer.topology
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文