1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 13:05:59 +02:00

jar: Added 'cf' example (#3827)

This commit is contained in:
Raghu Kalluri 2020-02-05 02:26:35 +05:30 committed by GitHub
parent 94d9a0ff53
commit 7e8b6b3eb8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,6 +3,10 @@
> Java Applications/Libraries Packager.
> More information: <https://docs.oracle.com/javase/tutorial/deployment/jar/basicsindex.html>.
- Recursively archive all files in the current directory into a .jar file:
`jar cf {{file.jar}} *`
- Unzip .jar/.war file to the current directory:
`jar -xvf {{file.jar}}`