mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 00:42:08 +02:00
java related pages: fix command description case (#8912)
This commit is contained in:
parent
2418d163f2
commit
82a2b4c91a
9 changed files with 9 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
# jar
|
||||
|
||||
> Java Applications/Libraries Packager.
|
||||
> 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:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jarsigner
|
||||
|
||||
> Sign and verify Java Archive (JAR) files.
|
||||
> Sign and verify Java archive (JAR) files.
|
||||
> More information: <https://docs.oracle.com/javase/9/tools/jarsigner.htm>.
|
||||
|
||||
- Sign a JAR file:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# java
|
||||
|
||||
> Java Application Launcher.
|
||||
> Java application launcher.
|
||||
> More information: <https://docs.oracle.com/en/java/javase/17/docs/specs/man/java.html>.
|
||||
|
||||
- Execute a java `.class` file that contains a main method by using just the class name:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# javac
|
||||
|
||||
> Java Application Compiler.
|
||||
> Java application compiler.
|
||||
> More information: <https://docs.oracle.com/en/java/javase/17/docs/specs/man/javac.html>.
|
||||
|
||||
- Compile a `.java` file:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jhat
|
||||
|
||||
> Java Heap Analysis Tool.
|
||||
> Java heap analysis tool.
|
||||
> More information: <https://docs.oracle.com/javase/8/docs/technotes/tools/unix/jhat.html>.
|
||||
|
||||
- Analyze a heap dump (from `jmap`), view via HTTP on port 7000:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jmap
|
||||
|
||||
> Java Memory Map Tool.
|
||||
> Java memory map tool.
|
||||
> More information: <https://docs.oracle.com/javase/7/docs/technotes/tools/share/jmap.html>.
|
||||
|
||||
- Print shared object mappings for a Java process (output like pmap):
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jps
|
||||
|
||||
> Show JVM Process Status of current user.
|
||||
> Show JVM process status of current user.
|
||||
> More information: <https://docs.oracle.com/en/java/javase/11/tools/jps.html>.
|
||||
|
||||
- List all JVM processes:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# jstack
|
||||
|
||||
> Java Stack Trace Tool.
|
||||
> Java stack trace tool.
|
||||
> More information: <https://manned.org/jstack>.
|
||||
|
||||
- Print Java stack traces for all threads in a Java process:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# kotlin
|
||||
|
||||
> Kotlin Application Launcher.
|
||||
> Kotlin application launcher.
|
||||
> More information: <https://kotlinlang.org>.
|
||||
|
||||
- Run a jar file:
|
||||
|
|
Loading…
Add table
Reference in a new issue