diff --git a/pages/common/bash.md b/pages/common/bash.md index b18f9dde5e7c3f..dd5e7548604780 100644 --- a/pages/common/bash.md +++ b/pages/common/bash.md @@ -2,7 +2,7 @@ > Bourne-Again SHell, an `sh`-compatible command-line interpreter. > See also: `zsh`, `histexpand` (history expansion). -> More information: . +> More information: . - Start an interactive shell session: diff --git a/pages/common/cmp.md b/pages/common/cmp.md index 1ba8c81a80ddd8..db15fdea740cc5 100644 --- a/pages/common/cmp.md +++ b/pages/common/cmp.md @@ -1,7 +1,7 @@ # cmp > Compare two files byte by byte. -> More information: . +> More information: . - Output char and line number of the first difference between two files: diff --git a/pages/common/complete.md b/pages/common/complete.md index a6a7339a40e77c..3b628b26341965 100644 --- a/pages/common/complete.md +++ b/pages/common/complete.md @@ -1,7 +1,7 @@ # complete > Get argument autocompletion to shell commands. -> More information: . +> More information: . - Apply a function that performs autocompletion to a command: diff --git a/pages/common/envsubst.md b/pages/common/envsubst.md index 643ca71430f288..0432fa212729f8 100644 --- a/pages/common/envsubst.md +++ b/pages/common/envsubst.md @@ -2,7 +2,7 @@ > Substitutes environment variables with their value in shell format strings. > Variables to be replaced should be in either `${var}` or `$var` format. -> More information: . +> More information: . - Replace environment variables in `stdin` and output to `stdout`: diff --git a/pages/common/gettext.md b/pages/common/gettext.md index 5f5b2bf4b9341d..f05ed9e182a161 100644 --- a/pages/common/gettext.md +++ b/pages/common/gettext.md @@ -3,7 +3,7 @@ > Translates a string using stored translations in a compiled `.mo` file. > Translations are stored in `/usr/share/locale//LC_MESSAGES/` with `domain` being the filename without its extension. > See also: `msgfmt`, `msgunfmt`. -> More information: . +> More information: . - Get the translation of a string as specified in the domain file (falls back to given `msgid` if no translation exists): diff --git a/pages/common/hello.md b/pages/common/hello.md index 5c700b992d4600..03a1dea41d628c 100644 --- a/pages/common/hello.md +++ b/pages/common/hello.md @@ -1,7 +1,7 @@ # hello > Print "Hello, world!", "hello, world" or a customizable text. -> More information: . +> More information: . - Print "Hello, world!": diff --git a/pages/common/history.md b/pages/common/history.md index cbd0e04edc8a53..1206c9befa1061 100644 --- a/pages/common/history.md +++ b/pages/common/history.md @@ -1,7 +1,7 @@ # history > Manage command-line history. -> More information: . +> More information: . - Display the commands history list with line numbers: diff --git a/pages/common/ifs.md b/pages/common/ifs.md index 0dc5020ca9939b..01b3fb8f77584a 100644 --- a/pages/common/ifs.md +++ b/pages/common/ifs.md @@ -2,7 +2,7 @@ > IFS (Internal Field Separator) is a special environment variable that defines the delimiter used for word splitting in Unix shells. > The default value of IFS is a space, tab, and newline. The three characters serve as delimiters. -> More information: . +> More information: . - View the current IFS value: diff --git a/pages/common/msgcat.md b/pages/common/msgcat.md index ae1f042afab87c..67eb3c8a1d6d64 100644 --- a/pages/common/msgcat.md +++ b/pages/common/msgcat.md @@ -2,7 +2,7 @@ > Concatenate and merge multiple `.po` translation files. > Useful in software localization pipelines to combine message catalogs with filtering options. -> More information: . +> More information: . - Combine multiple `.po` files into one: diff --git a/pages/common/msgfmt.md b/pages/common/msgfmt.md index 8f44e9f4fd4cff..96dc20f615ee5a 100644 --- a/pages/common/msgfmt.md +++ b/pages/common/msgfmt.md @@ -1,7 +1,7 @@ # msgfmt > Compile message catalog to binary format. -> More information: . +> More information: . - Compile a file to `messages.mo`: diff --git a/pages/common/msginit.md b/pages/common/msginit.md index d965a35769d521..3f1419ad15c647 100644 --- a/pages/common/msginit.md +++ b/pages/common/msginit.md @@ -1,7 +1,7 @@ # msginit > Generate language specific translation files based on Portable Object Templates. -> More information: . +> More information: . - Generate Portable Object files in system locale from `messages.pot`: diff --git a/pages/common/msgmerge.md b/pages/common/msgmerge.md index b20d0de2104862..37e53c24202a2a 100644 --- a/pages/common/msgmerge.md +++ b/pages/common/msgmerge.md @@ -1,7 +1,7 @@ # msgmerge > Update an existing translation file from a new template. -> More information: . +> More information: . - Update a translation file: diff --git a/pages/common/msgunfmt.md b/pages/common/msgunfmt.md index d1ad984c732a93..7fc56061de3025 100644 --- a/pages/common/msgunfmt.md +++ b/pages/common/msgunfmt.md @@ -1,7 +1,7 @@ # msgunfmt > Decompile message catalog from the binary format. -> More information: . +> More information: . - Output conversion: diff --git a/pages/common/popd.md b/pages/common/popd.md index 22a8f76e0a215d..a61d9b3ae3e73b 100644 --- a/pages/common/popd.md +++ b/pages/common/popd.md @@ -2,7 +2,7 @@ > 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. -> More information: . +> 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 1216b37eae45c4..b602240bc908fd 100644 --- a/pages/common/pushd.md +++ b/pages/common/pushd.md @@ -2,7 +2,7 @@ > 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. -> More information: . +> More information: . - Switch to directory and push it on the stack: diff --git a/pages/common/rbash.md b/pages/common/rbash.md index d3bb282bf7b9a7..a8eb9840d37d71 100644 --- a/pages/common/rbash.md +++ b/pages/common/rbash.md @@ -3,7 +3,7 @@ > Restricted Bash shell, equivalent to `bash --restricted`. > Does not permit changing the working directory, redirecting command output, or modifying environment variables, among other things. > See also: `histexpand` for history expansion. -> More information: . +> More information: . - Start an interactive shell session: diff --git a/pages/common/shopt.md b/pages/common/shopt.md index deb0e36a125a07..eee8136e2d4743 100644 --- a/pages/common/shopt.md +++ b/pages/common/shopt.md @@ -2,7 +2,7 @@ > Manage Bash shell options: variables (stored in `$BASHOPTS`) that control behavior specific to the Bash shell. > Generic POSIX shell variables (stored in `$SHELLOPTS`) are managed with the `set` command instead. -> More information: . +> More information: . - List of all settable options and whether they are set: diff --git a/pages/common/stow.md b/pages/common/stow.md index 9abaa94146aa2f..e1c3f612eb9251 100644 --- a/pages/common/stow.md +++ b/pages/common/stow.md @@ -3,7 +3,7 @@ > Symlink manager. > Often used to manage dotfiles. > See also: `chezmoi`, `tuckr`, `vcsh`, `homeshick`. -> More information: . +> More information: . - Symlink all files recursively to a given directory: diff --git a/pages/common/wdiff.md b/pages/common/wdiff.md index 5034078b79e818..0f29a5c1422e33 100644 --- a/pages/common/wdiff.md +++ b/pages/common/wdiff.md @@ -1,7 +1,7 @@ # wdiff > Display word differences between text files. -> More information: . +> More information: . - Compare two files: diff --git a/pages/common/xgettext.md b/pages/common/xgettext.md index 45d4653fe3f179..9f00017582ce1e 100644 --- a/pages/common/xgettext.md +++ b/pages/common/xgettext.md @@ -1,7 +1,7 @@ # xgettext > Extract gettext strings from code files. -> More information: . +> More information: . - Scan file and output strings to `messages.po`: diff --git a/pages/linux/datamash.md b/pages/linux/datamash.md index db0c73388ed1ea..abc706127aaea8 100644 --- a/pages/linux/datamash.md +++ b/pages/linux/datamash.md @@ -1,7 +1,7 @@ # datamash > Perform basic numeric, textual and statistical operations on input textual data files. -> More information: . +> More information: . - Get max, min, mean and median of a single column of numbers: diff --git a/pages/linux/diff3.md b/pages/linux/diff3.md index 4124921b229c0e..b7dc28ff003c2a 100644 --- a/pages/linux/diff3.md +++ b/pages/linux/diff3.md @@ -1,7 +1,7 @@ # diff3 > Compare three files line by line. -> More information: . +> More information: . - Compare files: diff --git a/pages/linux/dnsdomainname.md b/pages/linux/dnsdomainname.md index 59c16b190e6a69..06296b609c4b73 100644 --- a/pages/linux/dnsdomainname.md +++ b/pages/linux/dnsdomainname.md @@ -2,7 +2,7 @@ > Show the system's DNS domain name. > Note: The tool uses `gethostname` to get the hostname of the system and then `getaddrinfo` to resolve it into a canonical name. -> More information: . +> More information: . - Show the system's DNS domain name: diff --git a/pages/linux/grub-install.md b/pages/linux/grub-install.md index 34f66ea9a1d7bc..8c289e96578b77 100644 --- a/pages/linux/grub-install.md +++ b/pages/linux/grub-install.md @@ -1,7 +1,7 @@ # grub-install > Install GRUB to a device. -> More information: . +> More information: . - Install GRUB on a BIOS system: diff --git a/pages/linux/grub-mkconfig.md b/pages/linux/grub-mkconfig.md index a62d66594c70ab..366a655dec7250 100644 --- a/pages/linux/grub-mkconfig.md +++ b/pages/linux/grub-mkconfig.md @@ -1,7 +1,7 @@ # grub-mkconfig > Generate a GRUB configuration file. -> More information: . +> More information: . - Do a dry run and print the configuration to `stdout`: diff --git a/pages/linux/grub-script-check.md b/pages/linux/grub-script-check.md index 853da84936902d..653d3896eb2e01 100644 --- a/pages/linux/grub-script-check.md +++ b/pages/linux/grub-script-check.md @@ -2,7 +2,7 @@ > The program `grub-script-check` takes a GRUB script file and checks it for syntax errors. > It may take a path as a non-option argument. If none is supplied, it will read from `stdin`. -> More information: . +> More information: . - Check a specific script file for syntax errors: diff --git a/pages/linux/guix-package.md b/pages/linux/guix-package.md index 80919990117112..65e6a13a5e2931 100644 --- a/pages/linux/guix-package.md +++ b/pages/linux/guix-package.md @@ -1,7 +1,7 @@ # guix package > Install, upgrade and remove Guix packages, or rollback to previous configurations. -> More information: . +> More information: . - Install a new package: diff --git a/pages/linux/parted.md b/pages/linux/parted.md index 8872e5d1fb0395..1d5953a4539e73 100644 --- a/pages/linux/parted.md +++ b/pages/linux/parted.md @@ -2,7 +2,7 @@ > A partition manipulation program. > See also: `parted.interactive`, `partprobe`. -> More information: . +> More information: . - List partitions on all block devices: diff --git a/pages/linux/rcp.md b/pages/linux/rcp.md index bbbb974283ce80..76e1aa38f2348c 100644 --- a/pages/linux/rcp.md +++ b/pages/linux/rcp.md @@ -2,7 +2,7 @@ > Copy files between local and remote systems. > It mimics the behavior of the `cp` command but operates across different machines. -> More information: . +> More information: . - Copy a file to a remote host: diff --git a/pages/linux/rexec.md b/pages/linux/rexec.md index dc440e8bf92a31..e32051b1086705 100644 --- a/pages/linux/rexec.md +++ b/pages/linux/rexec.md @@ -2,7 +2,7 @@ > Execute a command on a remote host. > Note: Use `rexec` with caution, as it transmits data in plain text. Consider secure alternatives like SSH for encrypted communication. -> More information: . +> More information: . - Execute a command on a remote host: diff --git a/pages/linux/rlogin.md b/pages/linux/rlogin.md index 2e65cd90be9a67..d99b816b4cf561 100644 --- a/pages/linux/rlogin.md +++ b/pages/linux/rlogin.md @@ -1,7 +1,7 @@ # rlogin > Log in to a remote host. -> More information: . +> More information: . - Log in to a remote host: diff --git a/pages/linux/rsh.md b/pages/linux/rsh.md index 870c23b8c24ada..1326db36793713 100644 --- a/pages/linux/rsh.md +++ b/pages/linux/rsh.md @@ -1,7 +1,7 @@ # rsh > Execute commands on a remote host. -> More information: . +> More information: . - Execute a command on a remote host: diff --git a/pages/linux/talk.md b/pages/linux/talk.md index 74f3d5a25ff395..b9ad8771c7073f 100644 --- a/pages/linux/talk.md +++ b/pages/linux/talk.md @@ -1,7 +1,7 @@ # talk > A visual communication program which copies lines from your terminal to that of another user. -> More information: . +> More information: . - Start a talk session with a user on the same machine: