Hi,
I am using
jar -xf <name of the jar> -C <location where jar is to be extracted>
But i am getting issues with the syntax.
Please let me know where i am wrong or site some example.
Thanks.
Hi,
I am using
jar -xf <name of the jar> -C <location where jar is to be extracted>
But i am getting issues with the syntax.
Please let me know where i am wrong or site some example.
Thanks.
JARs are packed with ZIP. unzip -d [target-directory] [jar-file] will do the job.
You can just do:
unzip -d /path/to/your/directory my.jar
as if the jar file as a zip file.