mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* pages/*: update links and more info link script Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * cleanup: reformat code * ax-webapp: fix link * curl: fix false positive Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> --------- Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
24 lines
613 B
Markdown
24 lines
613 B
Markdown
# nix
|
|
|
|
> Dienstprogramme für die Nix-Sprache und den Nix-Speicher.
|
|
> Weitere Informationen: <https://nixos.org/manual/nix>.
|
|
|
|
- Suche nach einem Paket über seinen Namen oder seine Beschreibung:
|
|
|
|
`nix search {{suchbegriff}}`
|
|
|
|
- Starte eine Nix-Shell, die die angegebenen Pakete zur Verfügung stellt:
|
|
|
|
`nix run {{nixpkgs.pkg1 nixpkgs.pkg2 ...}}`
|
|
|
|
- Optimiere die Festplattennutzung des Nix-Speichers durch Zusammenfassen doppelter Dateien:
|
|
|
|
`nix store optimise`
|
|
|
|
- Starte eine interaktive Umgebung zum Ausführen von Nix-Ausdrücken:
|
|
|
|
`nix repl`
|
|
|
|
- Upgrade Nix auf die neueste stabile Version:
|
|
|
|
`nix upgrade-nix`
|