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

29
tldr/linux/checkinstall Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# checkinstall
> Track the local installation of a software package, and produce a binary package which can be used with a system's native package manager.
> More information: <http://checkinstall.izto.org>.
- Create and install a package with default settings:
`sudo checkinstall --default`
- Create a package but don't install it:
`sudo checkinstall --install={{no}}`
- Create a package without documentation:
`sudo checkinstall --nodoc`
- Create a package and set the name:
`sudo checkinstall --pkgname {{package}}`
- Create a package and specify where to save it:
`sudo checkinstall --pakdir {{path/to/directory}}`