Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

22
tldr/serialver Normal file
View File

@@ -0,0 +1,22 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# serialver
> Returns the serialVersionUID of classes.
> It does not set a security manager by default.
> More information: <https://docs.oracle.com/en/java/javase/20/docs/specs/man/serialver.html>.
- Display the serialVersionUID of a class:
`serialver {{classnames}}`
- Display the serialVersionUID for a colon-separated list of classes and resources:
`serialver -classpath {{path/to/directory}} {{classname1:classname2:...}}`
- Use a specific option from reference page of Java application launcher to the Java Virtual Machine:
`serialver -Joption {{classnames}}`