Update cheatsheets

This commit is contained in:
ivuorinen
2024-02-21 11:19:49 +00:00
parent 4e88a1b42f
commit 3d653cc7e6
4803 changed files with 127002 additions and 0 deletions

30
tlmgr-remove Normal file
View File

@@ -0,0 +1,30 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# tlmgr remove
> Uninstall TeX Live packages.
> By default, removed packages will be backed up to `./tlpkg/backups` under the TL installation directory.
> More information: <https://www.tug.org/texlive/tlmgr.html>.
- Uninstall a TeX Live package:
`sudo tlmgr remove {{package}}`
- Simulate uninstalling a package without making any changes:
`tlmgr remove --dry-run {{package}}`
- Uninstall a package without its dependencies:
`sudo tlmgr remove --no-depends {{package}}`
- Uninstall a package and back it up to a specific directory:
`sudo tlmgr remove --backupdir {{path/to/directory}} {{package}}`
- Uninstall all of TeX Live, asking for confirmation:
`sudo tlmgr remove --all`