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

42
opam Normal file
View File

@@ -0,0 +1,42 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# opam
> OCaml Package Manager.
> Manage OCaml compilers, tools and libraries.
> More information: <https://opam.ocaml.org/>.
- Initialize opam for first use:
`opam init`
- Search for packages:
`opam search {{query}}`
- Install a package and all of its dependencies:
`opam install {{package}}`
- Display detailed information about a package:
`opam show {{package}}`
- List all installed packages:
`opam list`
- Update the local package database:
`opam update`
- Upgrade all installed packages:
`opam upgrade`
- Display help:
`opam help`