diff --git a/contributing-guides/style-guide.md b/contributing-guides/style-guide.md index 690dfd7762..9498edfdcc 100644 --- a/contributing-guides/style-guide.md +++ b/contributing-guides/style-guide.md @@ -319,12 +319,6 @@ For example, Use See also: `command1`, `command2`, `command3`. ``` -- Optionally, you can add a short description beside the referenced pages: - -```md -> See also: `date` for Unix information, `uname` for system information and `umount` for unmounting partitions. -``` - - When a command features subcommands, those pages can be referenced with the following line. Note that only the subcommand is named: ```md diff --git a/pages/common/ack.md b/pages/common/ack.md index 9b904d7b60..9082dd7713 100644 --- a/pages/common/ack.md +++ b/pages/common/ack.md @@ -1,7 +1,7 @@ # ack > A search tool like `grep`, optimized for developers. -> See also: `rg`, which is much faster. +> See also: `rg`. > More information: . - Search for files containing a string or `regex` in the current directory recursively: diff --git a/pages/common/age-keygen.md b/pages/common/age-keygen.md index 5742b85220..2d7513307c 100644 --- a/pages/common/age-keygen.md +++ b/pages/common/age-keygen.md @@ -1,7 +1,7 @@ # age-keygen > Generate `age` key pairs. -> See also: `age` for encrypting/decrypting files. +> See also: `age`. > More information: . - Generate a key pair, save it to an unencrypted file, and print the public key to `stdout`: diff --git a/pages/common/age.md b/pages/common/age.md index ad3bcf831b..38bd12e1bc 100644 --- a/pages/common/age.md +++ b/pages/common/age.md @@ -1,7 +1,7 @@ # age > A simple, modern, and secure file encryption tool. -> See also: `age-keygen` for generating key pairs. +> See also: `age-keygen`. > More information: . - Generate an encrypted file that can be decrypted with a passphrase: diff --git a/pages/common/bash.md b/pages/common/bash.md index d817f7a0ec..f2a19c67ba 100644 --- a/pages/common/bash.md +++ b/pages/common/bash.md @@ -1,7 +1,7 @@ # bash > Bourne-Again SHell, an `sh`-compatible command-line interpreter. -> See also: `zsh`, `!` (history expansion). +> See also: `zsh`, `!`. > More information: . - Start an interactive shell session: diff --git a/pages/common/conda-activate.md b/pages/common/conda-activate.md index 38a6d91743..25dafd1207 100644 --- a/pages/common/conda-activate.md +++ b/pages/common/conda-activate.md @@ -1,7 +1,7 @@ # conda activate > Activate a conda environment. -> See also: `conda deactivate` to deactivate a conda environment. +> See also: `conda deactivate`. > More information: . - Activate an existing environment named `myenv`: diff --git a/pages/common/disown.md b/pages/common/disown.md index 2ba6170309..7b43591558 100644 --- a/pages/common/disown.md +++ b/pages/common/disown.md @@ -1,7 +1,7 @@ # disown > Allow sub-processes to live beyond the shell that they are attached to. -> See also: `jobs` for finding job numbers. +> See also: `jobs`. > More information: . - Disown the current job: diff --git a/pages/common/dmypy.md b/pages/common/dmypy.md index 717a78e543..89aca7c180 100644 --- a/pages/common/dmypy.md +++ b/pages/common/dmypy.md @@ -1,7 +1,7 @@ # dmypy > Type check Python code, running `mypy` as a daemon for better speed. -> See also: `mypy` for more options to use with check and run. +> See also: `mypy`. > More information: . - Type check a file, and start the daemon if it is not running: diff --git a/pages/common/encfs.md b/pages/common/encfs.md index 02a8c0fbdc..7f385c3b76 100644 --- a/pages/common/encfs.md +++ b/pages/common/encfs.md @@ -1,7 +1,7 @@ # encfs > Mount or create encrypted virtual filesystems. -> See also: `fusermount` which can unmount filesystems mounted by this command. +> See also: `fusermount`. > More information: . - Initialize or mount an encrypted filesystem: diff --git a/pages/common/gcloud-help.md b/pages/common/gcloud-help.md index 75f4bc599b..9a5c87299c 100644 --- a/pages/common/gcloud-help.md +++ b/pages/common/gcloud-help.md @@ -1,7 +1,7 @@ # gcloud help > Display help and reference information for `gcloud`. -> See also: `gcloud topic` for supplementary help topics not directly associated with individual commands. +> See also: `gcloud topic`. > More information: . - Search the `gcloud` CLI reference documents for specific terms: diff --git a/pages/common/gcloud-topic.md b/pages/common/gcloud-topic.md index 735865eeac..cd950677b2 100644 --- a/pages/common/gcloud-topic.md +++ b/pages/common/gcloud-topic.md @@ -1,7 +1,7 @@ # gcloud topic > Display supplementary help for topics not directly associated with individual commands. -> See also: `gcloud help` for general help. +> See also: `gcloud help`. > More information: . - View supplementary help material for non-command topics like accessibility, filtering, and formatting: diff --git a/pages/common/git-am.md b/pages/common/git-am.md index 42dc2c78ab..521535ce65 100644 --- a/pages/common/git-am.md +++ b/pages/common/git-am.md @@ -1,7 +1,7 @@ # git am > Apply patch files and create a commit. Useful when receiving commits via email. -> See also: `git format-patch` which can generate patch files. +> See also: `git format-patch`. > More information: . - Apply and commit changes following a local patch file: diff --git a/pages/common/git-apply.md b/pages/common/git-apply.md index 338ff09f6b..c02dc052af 100644 --- a/pages/common/git-apply.md +++ b/pages/common/git-apply.md @@ -1,7 +1,7 @@ # git apply > Apply a patch to files and/or to the index without creating a commit. -> See also: `git am` which applies a patch and also creates a commit. +> See also: `git am`. > More information: . - Print messages about the patched files: diff --git a/pages/common/git-fsck.md b/pages/common/git-fsck.md index 78b7b80be8..86f66f1f79 100644 --- a/pages/common/git-fsck.md +++ b/pages/common/git-fsck.md @@ -1,8 +1,8 @@ # git fsck > Verify the validity and connectivity of nodes in a Git repository index. -> Does not make any modifications. -> See also: `git gc` for cleaning up dangling blobs. +> Note: Does not make any modifications. +> See also: `git gc`. > More information: . - Check the current repository: diff --git a/pages/common/hledger.md b/pages/common/hledger.md index d484dcc62f..7877606e44 100644 --- a/pages/common/hledger.md +++ b/pages/common/hledger.md @@ -1,7 +1,7 @@ # hledger > A robust, friendly plain text accounting app. -> See also: `hledger-ui` for TUI, `hledger-web` for web interface. +> See also: `hledger-ui`, `hledger-web`. > More information: . - Record new transactions interactively, saving to the default journal file: diff --git a/pages/common/httpie.md b/pages/common/httpie.md index 87dd07e31e..8c072e0437 100644 --- a/pages/common/httpie.md +++ b/pages/common/httpie.md @@ -1,7 +1,7 @@ # httpie > Management interface for HTTPie. -> See also: `http`, the tool itself. +> See also: `http`. > More information: . - Check updates for `http`: diff --git a/pages/common/kube-fzf.md b/pages/common/kube-fzf.md index 9f217c852a..39cdf41c67 100644 --- a/pages/common/kube-fzf.md +++ b/pages/common/kube-fzf.md @@ -1,7 +1,7 @@ # kube-fzf > Shell commands for command-line fuzzy searching of Kubernetes Pods. -> See also: `kubectl` for related commands. +> See also: `kubectl`. > More information: . - Get pod details (from current namespace): diff --git a/pages/common/lambo.md b/pages/common/lambo.md index b18493911e..a655a784cb 100644 --- a/pages/common/lambo.md +++ b/pages/common/lambo.md @@ -1,7 +1,7 @@ # lambo > A super-powered `laravel new` for Laravel and Valet. -> See also: `lambo new` for additional command flags. +> See also: `lambo new`. > More information: . - Create a new Laravel application: diff --git a/pages/common/mosquitto_passwd.md b/pages/common/mosquitto_passwd.md index 8c6ed8a862..ab7c2a8d55 100644 --- a/pages/common/mosquitto_passwd.md +++ b/pages/common/mosquitto_passwd.md @@ -1,7 +1,7 @@ # mosquitto_passwd > Manage password files for mosquitto. -> See also: `mosquitto`, the MQTT server that this manages. +> See also: `mosquitto`. > More information: . - Add a new user to a password file (will prompt to enter the password): diff --git a/pages/common/mysqldump.md b/pages/common/mysqldump.md index 1a0aa62b6e..321fd9b27c 100644 --- a/pages/common/mysqldump.md +++ b/pages/common/mysqldump.md @@ -1,7 +1,7 @@ # mysqldump > Backups MySQL databases. -> See also: `mysql` for restoring databases. +> See also: `mysql`. > More information: . - Create a backup (user will be prompted for a password): diff --git a/pages/common/netperf.md b/pages/common/netperf.md index f9cd007708..395a1adac3 100644 --- a/pages/common/netperf.md +++ b/pages/common/netperf.md @@ -1,7 +1,7 @@ # netperf > Client-side command for `netperf`, the benchmarking application that measures network throughput. Similar to `iperf`. -> See also: `netserver` for the server-side command. +> See also: `netserver`. > More information: . - Connect to server on a specific IP address via default port (12865): diff --git a/pages/common/netserver.md b/pages/common/netserver.md index 21bb84c66e..d1098d312d 100644 --- a/pages/common/netserver.md +++ b/pages/common/netserver.md @@ -1,7 +1,7 @@ # netserver > Server-side command for `netperf`, the benchmarking application that measures network throughput. -> See also: `netperf` for the client-side command. +> See also: `netperf`. > More information: . - Start a server on the default port (12865) and fork to background: diff --git a/pages/common/nix-build.3.md b/pages/common/nix-build.3.md index 4f062184bb..94bf3a2f4d 100644 --- a/pages/common/nix-build.3.md +++ b/pages/common/nix-build.3.md @@ -1,7 +1,7 @@ # nix build > Build a Nix expression (downloading from the cache when possible). -> See also: `nix-build` for information about traditional Nix builds from expressions, `nix flake` for information about flakes. +> See also: `nix-build`, `nix flake`. > More information: . - Build a package from nixpkgs, symlinking the result to `./result`: diff --git a/pages/common/nix-registry.md b/pages/common/nix-registry.md index 37457d2201..835f3250c9 100644 --- a/pages/common/nix-registry.md +++ b/pages/common/nix-registry.md @@ -1,7 +1,7 @@ # nix registry > Manage a Nix flake registry. -> See also: `nix flake` for information about flakes. +> See also: `nix flake`. > More information: . - Pin the `nixpkgs` revision to the current version of the upstream repository: diff --git a/pages/common/nix-run.md b/pages/common/nix-run.md index 564a138fd1..69a5764956 100644 --- a/pages/common/nix-run.md +++ b/pages/common/nix-run.md @@ -1,7 +1,7 @@ # nix run > Run an application from a Nix flake. -> See also: `nix flake` for information about flakes. +> See also: `nix flake`. > More information: . - Run the default application in the flake in the current directory: diff --git a/pages/common/nix-search.md b/pages/common/nix-search.md index 9861c5b99f..e3ad41e9f4 100644 --- a/pages/common/nix-search.md +++ b/pages/common/nix-search.md @@ -1,7 +1,7 @@ # nix search > Search for packages in a Nix flake. -> See also: `nix flake` for information about flakes. +> See also: `nix flake`. > More information: . - Search `nixpkgs` for a package based on its name or description: diff --git a/pages/common/nix-shell.3.md b/pages/common/nix-shell.3.md index 2f94fa0933..14bf3cac7b 100644 --- a/pages/common/nix-shell.3.md +++ b/pages/common/nix-shell.3.md @@ -1,7 +1,7 @@ # nix shell > Start a shell in which the specified packages are available. -> See also: `nix-shell` for setting up development environments, `nix flake` for information about flakes. +> See also: `nix-shell`, `nix flake`. > More information: . - Start an interactive shell with some packages from `nixpkgs`: diff --git a/pages/common/nix.md b/pages/common/nix.md index 0df35cdfbf..35b1c0e0f3 100644 --- a/pages/common/nix.md +++ b/pages/common/nix.md @@ -2,7 +2,7 @@ > A powerful package manager that makes package management reliable, reproducible, and declarative. > `nix` is experimental and requires enabling experimental features. -> See also: `nix classic` for a classic, stable interface. +> See also: `nix classic`. > Some subcommands such as `build`, `develop`, `flake`, `registry`, `profile`, `search`, `repl`, `store`, `edit`, `why-depends`, etc. have their own usage documentation. > More information: . diff --git a/pages/common/npm-login.md b/pages/common/npm-login.md index 4717152c11..e449daee84 100644 --- a/pages/common/npm-login.md +++ b/pages/common/npm-login.md @@ -1,7 +1,7 @@ # npm login > Log in to a registry user account. -> See also: `npm logout` for logging out. +> See also: `npm logout`. > More information: . - Log in to a registry user account and save the credentials to the `.npmrc` file: diff --git a/pages/common/npm-logout.md b/pages/common/npm-logout.md index 5f82d97012..9e6a21ee60 100644 --- a/pages/common/npm-logout.md +++ b/pages/common/npm-logout.md @@ -1,7 +1,7 @@ # npm logout > Log out of the registry user account. -> See also: `npm login` for logging in. +> See also: `npm login`. > More information: . - Log out of the registry user account: diff --git a/pages/common/popd.md b/pages/common/popd.md index a61d9b3ae3..34f72c404a 100644 --- a/pages/common/popd.md +++ b/pages/common/popd.md @@ -1,7 +1,7 @@ # popd > Remove a directory placed on the directory stack via the pushd shell built-in. -> See also: `pushd` to place a directory on the stack and `dirs` to display directory stack contents. +> See also: `pushd`, `dirs`. > More information: . - Remove the top directory from the stack and cd to it: diff --git a/pages/common/pushd.md b/pages/common/pushd.md index b602240bc9..9509a6752a 100644 --- a/pages/common/pushd.md +++ b/pages/common/pushd.md @@ -1,7 +1,7 @@ # pushd > Place a directory on a stack so it can be accessed later. -> See also: `popd` to switch back to original directory and `dirs` to display directory stack contents. +> See also: `popd`, `dirs`. > More information: . - Switch to directory and push it on the stack: diff --git a/pages/common/qownnotes.md b/pages/common/qownnotes.md index d9c3362710..9b33fa3b06 100644 --- a/pages/common/qownnotes.md +++ b/pages/common/qownnotes.md @@ -2,7 +2,7 @@ > Markdown note-taking application. > Optionally integrates with the note-taking applications of Nextcloud and ownCloud. -> See also: `qc` for managing command snippets. +> See also: `qc`. > More information: . - Run in portable mode: diff --git a/pages/common/setopt.md b/pages/common/setopt.md index f27948d1f3..6620918424 100644 --- a/pages/common/setopt.md +++ b/pages/common/setopt.md @@ -2,7 +2,7 @@ > Set Z shell (`zsh`) options. > Note: Zsh options are case-insensitive and underscores are ignored. -> See also: `unsetopt` to unset options. +> See also: `unsetopt`. > More information: . - List enabled options: diff --git a/pages/common/sfdk-build-shell.md b/pages/common/sfdk-build-shell.md index 4c159af32a..0f862456cd 100644 --- a/pages/common/sfdk-build-shell.md +++ b/pages/common/sfdk-build-shell.md @@ -1,7 +1,7 @@ # sfdk build-shell > Execute custom steps in build engine. -> See also: `sfdk config` for configuring the build target and `sfdk build-init` for initializing build tree. +> See also: `sfdk config`, `sfdk build-init`. > More information: . - Launch interactive shell in the build engine: diff --git a/pages/common/sh.md b/pages/common/sh.md index c3b8af2861..77279da728 100644 --- a/pages/common/sh.md +++ b/pages/common/sh.md @@ -1,7 +1,7 @@ # sh > Bourne shell, the standard command language interpreter. -> See also: `!` and `^` for history expansion. +> See also: `!`, `^`. > More information: . - Start an interactive shell session: diff --git a/pages/common/speedtest-cli.md b/pages/common/speedtest-cli.md index d0752dfe4a..99f7357448 100644 --- a/pages/common/speedtest-cli.md +++ b/pages/common/speedtest-cli.md @@ -1,7 +1,7 @@ # speedtest-cli > Test internet bandwidth using . -> See also: `speedtest` for the official CLI. +> See also: `speedtest`. > More information: . - Run a speed test: diff --git a/pages/common/ssh-agent.md b/pages/common/ssh-agent.md index 389221cec4..6623ac24b7 100644 --- a/pages/common/ssh-agent.md +++ b/pages/common/ssh-agent.md @@ -1,8 +1,8 @@ # ssh-agent > Spawn an SSH Agent process. -> An SSH Agent holds SSH keys decrypted in memory until removed or the process is killed. -> See also: `ssh-add`, which can add and manage keys held by an SSH Agent. +> Note: An SSH Agent holds SSH keys decrypted in memory until removed or the process is killed. +> See also: `ssh-add`. > More information: . - Start an SSH Agent for the current shell: diff --git a/pages/common/ssh-keygen.md b/pages/common/ssh-keygen.md index e52ef8693b..c004723d86 100644 --- a/pages/common/ssh-keygen.md +++ b/pages/common/ssh-keygen.md @@ -1,7 +1,7 @@ # ssh-keygen > Generate SSH keys used for authentication, password-less logins, and other things. -> See also: `ssh-copy-id` for installing SSH keys on remote hosts. +> See also: `ssh-copy-id`. > More information: . - Generate a key interactively: diff --git a/pages/common/unsetopt.md b/pages/common/unsetopt.md index 70da377161..e578600082 100644 --- a/pages/common/unsetopt.md +++ b/pages/common/unsetopt.md @@ -2,7 +2,7 @@ > Unset options for the Z shell (`zsh`). > Note: Zsh options are case-insensitive and underscores are ignored. -> See also: `setopt` to set options. +> See also: `setopt`. > More information: . - List all currently unset options (use `setopt` to list set options): diff --git a/pages/common/wait.md b/pages/common/wait.md index fd0a7940f0..6ed4208a7c 100644 --- a/pages/common/wait.md +++ b/pages/common/wait.md @@ -1,7 +1,7 @@ # wait > Wait for a process to complete before proceeding. -> See also: `ps` to view information about running processes and `waitpid`. +> See also: `ps`, `waitpid`. > More information: . - Wait for a process to finish given its process ID (PID) and return its exit status: diff --git a/pages/linux/bspwm.md b/pages/linux/bspwm.md index 24021d7cbe..b364bfe11e 100644 --- a/pages/linux/bspwm.md +++ b/pages/linux/bspwm.md @@ -1,7 +1,7 @@ # bspwm > A tiling window manager based on binary space partitioning. -> See also: `bspc` for controlling it. +> See also: `bspc`. > More information: . - Start `bspwm` (note that a pre-existing window manager must not be open when this command is run): diff --git a/pages/linux/compsize.md b/pages/linux/compsize.md index 2cd5af0e47..31d0641293 100644 --- a/pages/linux/compsize.md +++ b/pages/linux/compsize.md @@ -1,7 +1,7 @@ # compsize > Calculate the compression ratio of a set of files on a btrfs filesystem. -> See also: `btrfs filesystem` for recompressing a file by defragmenting it. +> See also: `btrfs filesystem`. > More information: . - Calculate the current compression ratio for a file or directory: diff --git a/pages/linux/extundelete.md b/pages/linux/extundelete.md index ccf6f4fb6b..33a17440fe 100644 --- a/pages/linux/extundelete.md +++ b/pages/linux/extundelete.md @@ -1,7 +1,7 @@ # extundelete > Recover deleted files from ext3 or ext4 partitions by parsing the journal. -> See also: `date` for Unix time information and `umount` for unmounting partitions. +> See also: `date`, `umount`. > More information: . - Restore all deleted files inside partition `N` on device `X`: diff --git a/pages/linux/insmod.md b/pages/linux/insmod.md index ed8734ecb6..0b496569b3 100644 --- a/pages/linux/insmod.md +++ b/pages/linux/insmod.md @@ -1,7 +1,7 @@ # insmod > Dynamically load modules into the Linux Kernel. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - Insert a kernel module into the Linux kernel: diff --git a/pages/linux/ipcs.md b/pages/linux/ipcs.md index 0a5987ffe5..dfa18d201c 100644 --- a/pages/linux/ipcs.md +++ b/pages/linux/ipcs.md @@ -1,7 +1,7 @@ # ipcs > Show information about the usage of System V IPC facilities: shared memory segments, message queues, and semaphore arrays. -> See also: `lsipc` for a more flexible tool, `ipcmk` for creating IPC facilities, and `ipcrm` for deleting them. +> See also: `lsipc`, `ipcmk`, `ipcrm`. > More information: . - Show information about all active IPC facilities: diff --git a/pages/linux/lsipc.md b/pages/linux/lsipc.md index cc8d316269..236323678f 100644 --- a/pages/linux/lsipc.md +++ b/pages/linux/lsipc.md @@ -1,7 +1,7 @@ # lsipc > Show information on System V IPC facilities currently employed in the system. -> See also: `ipcs` for the older tool. +> See also: `ipcs`. > More information: . - Show information about all active IPC facilities: diff --git a/pages/linux/lsmod.md b/pages/linux/lsmod.md index 25e616e831..128675259f 100644 --- a/pages/linux/lsmod.md +++ b/pages/linux/lsmod.md @@ -1,7 +1,7 @@ # lsmod > Show the status of Linux kernel modules. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - List all currently loaded kernel modules: diff --git a/pages/linux/modinfo.md b/pages/linux/modinfo.md index 79c859abd8..2561105f68 100644 --- a/pages/linux/modinfo.md +++ b/pages/linux/modinfo.md @@ -1,7 +1,7 @@ # modinfo > Extract information about a Linux kernel module. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - List all attributes of a kernel module: diff --git a/pages/linux/modprobe.md b/pages/linux/modprobe.md index 8064a7b285..3f729ea6ef 100644 --- a/pages/linux/modprobe.md +++ b/pages/linux/modprobe.md @@ -1,7 +1,7 @@ # modprobe > Add or remove modules from the Linux kernel. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - Pretend to load a module into the kernel, but don't actually do it: diff --git a/pages/linux/mount.ddi.md b/pages/linux/mount.ddi.md index d76369a723..bd05461dc7 100644 --- a/pages/linux/mount.ddi.md +++ b/pages/linux/mount.ddi.md @@ -1,7 +1,7 @@ # mount.ddi > Mount Discoverable Disk Images. -> See also: `systemd-dissect` for other commands relevant to DDIs. +> See also: `systemd-dissect`. > More information: . - Mount an OS image: diff --git a/pages/linux/pw-dot.md b/pages/linux/pw-dot.md index 0eee2ad81e..1feaf6e326 100644 --- a/pages/linux/pw-dot.md +++ b/pages/linux/pw-dot.md @@ -1,7 +1,7 @@ # pw-dot > Create `.dot` files of the PipeWire graph. -> See also: `dot` for rendering graph. +> See also: `dot`. > More information: . - Generate a graph to `pw.dot` file: diff --git a/pages/linux/quickemu.md b/pages/linux/quickemu.md index 6fda811aa0..735152bd61 100644 --- a/pages/linux/quickemu.md +++ b/pages/linux/quickemu.md @@ -2,7 +2,7 @@ > Build and manage highly optimised desktop virtual machines quickly. > Note: Virtual machine must be in stopped state when working with snapshots. -> See also: `quickget` for preparing VM configurations. +> See also: `quickget`. > More information: . - Create and run a virtual machine from a configuration file: diff --git a/pages/linux/rmmod.md b/pages/linux/rmmod.md index 4fbbeb30c4..1b5e1fb67f 100644 --- a/pages/linux/rmmod.md +++ b/pages/linux/rmmod.md @@ -1,7 +1,7 @@ # rmmod > Remove modules from the Linux kernel. -> See also: `kmod` for other module management commands. +> See also: `kmod`. > More information: . - Remove a module from the kernel: diff --git a/pages/linux/semanage-boolean.md b/pages/linux/semanage-boolean.md index 322c55fa6c..2a6892f5e6 100644 --- a/pages/linux/semanage-boolean.md +++ b/pages/linux/semanage-boolean.md @@ -1,7 +1,7 @@ # semanage boolean > Manage persistent SELinux boolean settings. -> See also: `semanage` for managing SELinux policies, `getsebool` for checking boolean values, and `setsebool` for applying non-persistent boolean settings. +> See also: `semanage`, `getsebool`, `setsebool`. > More information: . - List all booleans settings: diff --git a/pages/linux/sinfo.md b/pages/linux/sinfo.md index 1ee380c987..84216b5bc3 100644 --- a/pages/linux/sinfo.md +++ b/pages/linux/sinfo.md @@ -1,7 +1,7 @@ # sinfo > View information about Slurm nodes and partitions. -> See also: `squeue`, `sbatch`, which are also part of the Slurm workload manager. +> See also: `squeue`, `sbatch`. > More information: . - Show a quick summary overview of the cluster: diff --git a/pages/linux/systemctl-daemon-reexec.md b/pages/linux/systemctl-daemon-reexec.md index 0c5fd87bae..e242884aa3 100644 --- a/pages/linux/systemctl-daemon-reexec.md +++ b/pages/linux/systemctl-daemon-reexec.md @@ -1,7 +1,7 @@ # systemctl daemon-reexec > Reexecute systemd while preserving current unit states. -> See also: `systemctl daemon-reload` for applying changes in unit files. +> See also: `systemctl daemon-reload`. > More information: . - Reexecute systemd: diff --git a/pages/linux/systemctl-daemon-reload.md b/pages/linux/systemctl-daemon-reload.md index 4c644f60a7..b60aea3880 100644 --- a/pages/linux/systemctl-daemon-reload.md +++ b/pages/linux/systemctl-daemon-reload.md @@ -2,7 +2,7 @@ > Reload systemd manager configuration. > Use this after creating, modifying, or deleting unit files. -> See also: `systemctl reload` for reloading service configuration. +> See also: `systemctl reload`. > More information: . - Reload systemd to apply changes in unit files: diff --git a/pages/linux/systemctl-list-dependencies.md b/pages/linux/systemctl-list-dependencies.md index 8c11c41088..7a1885c544 100644 --- a/pages/linux/systemctl-list-dependencies.md +++ b/pages/linux/systemctl-list-dependencies.md @@ -1,7 +1,7 @@ # systemctl list-dependencies > Show a unit's dependency tree in systemd. -> See also: `systemctl list-units` to list loaded units. +> See also: `systemctl list-units`. > More information: . - Show the dependency tree of `default.target`: diff --git a/pages/linux/systemctl-list-unit-files.md b/pages/linux/systemctl-list-unit-files.md index 1a215c415f..aa184e1ba0 100644 --- a/pages/linux/systemctl-list-unit-files.md +++ b/pages/linux/systemctl-list-unit-files.md @@ -1,7 +1,7 @@ # systemctl list-unit-files > List installed unit files and their enablement states. -> See also: `systemctl list-units` for listing units currently loaded in memory. +> See also: `systemctl list-units`. > More information: . - List installed unit files and their states: diff --git a/pages/linux/systemctl-list-units.md b/pages/linux/systemctl-list-units.md index ce61a9e8ab..b78f73a9a5 100644 --- a/pages/linux/systemctl-list-units.md +++ b/pages/linux/systemctl-list-units.md @@ -1,7 +1,7 @@ # systemctl list-units > List units that systemd currently has in memory. -> See also: `systemctl list-unit-files` for listing installed unit files. +> See also: `systemctl list-unit-files`. > More information: . - List units which are active, have pending jobs, or have failed: diff --git a/pages/osx/netstat.md b/pages/osx/netstat.md index 1b6e942260..7bd715f312 100644 --- a/pages/osx/netstat.md +++ b/pages/osx/netstat.md @@ -1,7 +1,7 @@ # netstat > Display network-related information such as open connections, open socket ports, etc. -> See also: `lsof` for listing network connections, including listening ports. +> See also: `lsof`. > More information: . - Display the PID and program name listening on a specific protocol: diff --git a/pages/windows/pushd.md b/pages/windows/pushd.md index 20eacb5e87..989807defa 100644 --- a/pages/windows/pushd.md +++ b/pages/windows/pushd.md @@ -1,7 +1,7 @@ # pushd > Place a directory on a stack so it can be accessed later. -> See also: `popd` to switch back to original directory. +> See also: `popd`. > More information: . - Switch to directory and push it on the stack: