mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-21 21:42:08 +02:00

* pages/*, style-guide: update pages, fix Markdown (commit 1) * Update pages * style-guide.de: update page * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * pip3: remove search command * rpm: update path placeholder Co-authored-by: pixel <pixel+github@chrissx.de> * Update pages/linux/pkgfile.md Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: pixel <pixel+github@chrissx.de>
36 lines
765 B
Markdown
36 lines
765 B
Markdown
# tlmgr info
|
|
|
|
> Show information about TeX Live packages.
|
|
> More information: <https://www.tug.org/texlive/tlmgr.html>.
|
|
|
|
- List all available TeX Live packages, prefexing installed ones with `i`:
|
|
|
|
`tlmgr info`
|
|
|
|
- List all available collections:
|
|
|
|
`tlmgr info collections`
|
|
|
|
- List all available schemes:
|
|
|
|
`tlmgr info scheme`
|
|
|
|
- Show information about a specific package:
|
|
|
|
`tlmgr info {{package}}`
|
|
|
|
- List all files contained in a specific package:
|
|
|
|
`tlmgr info {{package}} --list`
|
|
|
|
- List all installed packages:
|
|
|
|
`tlmgr info --only-installed`
|
|
|
|
- Show only specific information about a package:
|
|
|
|
`tlmgr info {{package}} --data "{{name}},{{category}},{{installed}},{{size}},{{depends}},..."`
|
|
|
|
- Print all available packages as JSON encoded array:
|
|
|
|
`tlmgr info --json`
|