pages*: make "See also" conform to the new syntax (#12756) (#12354)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: spageektti <git@spageektti.cc>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Vítor Henrique
2024-06-03 17:21:58 -03:00
committed by GitHub
parent 80cc7a5af3
commit 4f75ffc1db
15 changed files with 16 additions and 15 deletions

View File

@@ -1,7 +1,7 @@
# age-keygen # age-keygen
> Generate `age` key pairs. > Generate `age` key pairs.
> See `age` for how to encrypt/decrypt files. > See also: `age` for encrypting/decrypting files.
> More information: <https://manned.org/age-keygen>. > More information: <https://manned.org/age-keygen>.
- Generate a key pair, save it to an unencrypted file, and print the public key to `stdout`: - Generate a key pair, save it to an unencrypted file, and print the public key to `stdout`:

View File

@@ -1,7 +1,7 @@
# age # age
> A simple, modern and secure file encryption tool. > A simple, modern and secure file encryption tool.
> See `age-keygen` for how to generate key pairs. > See also: `age-keygen` for generating key pairs.
> More information: <https://github.com/FiloSottile/age>. > More information: <https://github.com/FiloSottile/age>.
- Generate an encrypted file that can be decrypted with a passphrase: - Generate an encrypted file that can be decrypted with a passphrase:

View File

@@ -1,7 +1,7 @@
# apm # apm
> Atom editor Package Manager. > Atom editor Package Manager.
> See `atom`. > See also: `atom`.
> More information: <https://github.com/atom/apm>. > More information: <https://github.com/atom/apm>.
- Install a package from <http://atom.io/packages> or a theme from <http://atom.io/themes>: - Install a package from <http://atom.io/packages> or a theme from <http://atom.io/themes>:

View File

@@ -1,7 +1,8 @@
# git fsck # git fsck
> Verify the validity and connectivity of nodes in a Git repository index. > Verify the validity and connectivity of nodes in a Git repository index.
> Does not make any modifications. See `git gc` for cleaning up dangling blobs. > Does not make any modifications.
> See also: `git gc` for cleaning up dangling blobs.
> More information: <https://git-scm.com/docs/git-fsck>. > More information: <https://git-scm.com/docs/git-fsck>.
- Check the current repository: - Check the current repository:

View File

@@ -1,7 +1,7 @@
# nix-build # nix-build
> Build a Nix expression. > Build a Nix expression.
> See also: `tldr nix3 build`. > See also: `nix3 build`.
> More information: <https://nixos.org/manual/nix/stable/command-ref/nix-build.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/nix-build.html>.
- Build a Nix expression: - Build a Nix expression:

View File

@@ -1,7 +1,7 @@
# nix-shell # nix-shell
> Start an interactive shell based on a Nix expression. > Start an interactive shell based on a Nix expression.
> See also: `tldr nix3 shell`. > See also: `nix3 shell`.
> More information: <https://nixos.org/manual/nix/stable/command-ref/nix-shell.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/nix-shell.html>.
- Start with nix expression in `shell.nix` or `default.nix` in the current directory: - Start with nix expression in `shell.nix` or `default.nix` in the current directory:

View File

@@ -1,7 +1,7 @@
# nix-store # nix-store
> Manipulate or query the Nix store. > Manipulate or query the Nix store.
> See also: `tldr nix3 store`. > See also: `nix3 store`.
> More information: <https://nixos.org/manual/nix/stable/command-ref/nix-store.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/nix-store.html>.
- Collect garbage, such as removing unused paths: - Collect garbage, such as removing unused paths:

View File

@@ -1,7 +1,7 @@
# nix build # nix build
> Build a Nix expression (downloading from the cache when possible). > Build a Nix expression (downloading from the cache when possible).
> See also: `tldr nix-build`. See `tldr nix3 flake` for information about flakes. > See also: `nix-build` for information about traditional Nix builds from expressions, `nix3 flake` for information about flakes.
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-build.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-build.html>.
- Build a package from nixpkgs, symlinking the result to `./result`: - Build a package from nixpkgs, symlinking the result to `./result`:

View File

@@ -1,7 +1,7 @@
# nix registry # nix registry
> Manage a Nix flake registry. > Manage a Nix flake registry.
> See `tldr nix3 flake` for information about flakes. > See also: `nix3 flake` for information about flakes.
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-registry.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-registry.html>.
- Pin the `nixpkgs` revision to the current version of the upstream repository: - Pin the `nixpkgs` revision to the current version of the upstream repository:

View File

@@ -1,7 +1,7 @@
# nix run # nix run
> Run an application from a Nix flake. > Run an application from a Nix flake.
> See `tldr nix3 flake` for information about flakes. > See also: `nix3 flake` for information about flakes.
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-run.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-run.html>.
- Run the default application in the flake in the current directory: - Run the default application in the flake in the current directory:

View File

@@ -1,7 +1,7 @@
# nix search # nix search
> Search for packages in a Nix flake. > Search for packages in a Nix flake.
> See `tldr nix3 flake` for information about flakes. > See also: `nix3 flake` for information about flakes.
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-search.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-search.html>.
- Search `nixpkgs` for a package based on its name or description: - Search `nixpkgs` for a package based on its name or description:

View File

@@ -1,7 +1,7 @@
# nix shell # nix shell
> Start a shell in which the specified packages are available. > Start a shell in which the specified packages are available.
> See also: `tldr nix-shell`. See `tldr nix3 flake` for information about flakes. > See also: `nix-shell` for setting up development environments, `nix3 flake` for information about flakes.
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-shell.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-shell.html>.
- Start an interactive shell with some packages from `nixpkgs`: - Start an interactive shell with some packages from `nixpkgs`:

View File

@@ -1,7 +1,7 @@
# nix store # nix store
> Manipulate the Nix store. > Manipulate the Nix store.
> See also: `tldr nix-store`. > See also: `nix-store`.
> More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-store.html>. > More information: <https://nixos.org/manual/nix/stable/command-ref/new-cli/nix3-store.html>.
- Collect garbage, i.e. remove unused paths to reduce space usage: - Collect garbage, i.e. remove unused paths to reduce space usage:

View File

@@ -1,7 +1,7 @@
# mount.ddi # mount.ddi
> Mount Discoverable Disk Images. > Mount Discoverable Disk Images.
> See `tldr systemd-dissect` for other commands relevant to DDIs. > See also: `systemd-dissect` for other commands relevant to DDIs.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemd-dissect.html>. > More information: <https://www.freedesktop.org/software/systemd/man/latest/systemd-dissect.html>.
- Mount an OS image: - Mount an OS image:

View File

@@ -1,7 +1,7 @@
# setcap # setcap
> Set capabilities of specified file. > Set capabilities of specified file.
> See also: `tldr getcap`. > See also: `getcap`.
> More information: <https://manned.org/setcap>. > More information: <https://manned.org/setcap>.
- Set capability `cap_net_raw` (to use RAW and PACKET sockets) for a given file: - Set capability `cap_net_raw` (to use RAW and PACKET sockets) for a given file: