将 jar 的一部分提取到路径
我正在使用以下命令,我的目的是仅从中提取 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选项
-C
用于设置jar
运行的目录,而不是 JAR 文件中的路径。尝试:The option
-C
is to set the directory in whichjar
should run, not paths in the JAR file. Try: