1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 14:42:19 +02:00
tldr/pages/common/tlmgr-search.md
marchersimon 1ca0dbbe05
tlmgr-search: add page (#8287)
* tlmgr-search: add page

---------

Co-authored-by: CleanMachine1 <78213164+CleanMachine1@users.noreply.github.com>
Co-authored-by: Florian B <florianb053@gmail.com>
Co-authored-by: Emily Grace Seville <EmilySeville7cfg@gmail.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-06-23 13:30:31 +05:30

24 lines
880 B
Markdown

# tlmgr search
> Search for TeX Live packages using (Perl) regular expressions.
> More information: <https://www.tug.org/texlive/tlmgr.html>.
- Search for a package name and descriptions of all locally installed packages from a specific regular expression:
`tlmgr search "{{regular_expression}}"`
- Search for all file names of all locally installed packages from a regular expression:
`tlmgr search --file "{{regular_expression}}"`
- Search for all file names, package names, and descriptions of all locally installed packages from a regular expression:
`tlmgr search --all "{{regular_expression}}"`
- Search the TeX Live database, instead of the local installation:
`tlmgr search --global "{{regular_expression}}"`
- Restrict the matches for package names and descriptions (but not for file names) to whole words:
`tlmgr search --all --word "{{regular_expression}}"`