Last active
December 8, 2015 23:04
-
-
Save marcorodas/60e8bb270718330ec599 to your computer and use it in GitHub Desktop.
Java: Uso de Jar Files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| jar -cf jar-file input-files(s) //Create a jar file | |
| jar -tfv jar-file //View contents | |
| jar -xf jar-file archived-file(s) //Extract specific files | |
| jar -uf jar-file input-file(s) //Adding files | |
| zip -d jar-file archived-file //Delete specific file |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment