Skip to content

Commit 67b1190

Browse files
authored
GNU tools: use single page documentation (#17641)
1 parent cd86a60 commit 67b1190

33 files changed

+33
-33
lines changed

pages/common/bash.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Bourne-Again SHell, an `sh`-compatible command-line interpreter.
44
> See also: `zsh`, `histexpand` (history expansion).
5-
> More information: <https://www.gnu.org/software/bash/manual/html_node/Invoking-Bash.html>.
5+
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Invoking-Bash>.
66
77
- Start an interactive shell session:
88

pages/common/cmp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# cmp
22

33
> Compare two files byte by byte.
4-
> More information: <https://www.gnu.org/software/diffutils/manual/html_node/Invoking-cmp.html>.
4+
> More information: <https://www.gnu.org/software/diffutils/manual/diffutils.html#Invoking-cmp>.
55
66
- Output char and line number of the first difference between two files:
77

pages/common/complete.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# complete
22

33
> Get argument autocompletion to shell commands.
4-
> More information: <https://www.gnu.org/software/bash/manual/html_node/Programmable-Completion-Builtins.html#index-complete>.
4+
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-complete>.
55
66
- Apply a function that performs autocompletion to a command:
77

pages/common/envsubst.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Substitutes environment variables with their value in shell format strings.
44
> Variables to be replaced should be in either `${var}` or `$var` format.
5-
> More information: <https://www.gnu.org/software/gettext/manual/html_node/envsubst-Invocation.html>.
5+
> More information: <https://www.gnu.org/software/gettext/manual/gettext.html#envsubst-Invocation>.
66
77
- Replace environment variables in `stdin` and output to `stdout`:
88

pages/common/gettext.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
> Translates a string using stored translations in a compiled `.mo` file.
44
> Translations are stored in `/usr/share/locale/<locale_name>/LC_MESSAGES/` with `domain` being the filename without its extension.
55
> See also: `msgfmt`, `msgunfmt`.
6-
> More information: <https://www.gnu.org/software/gettext/manual/html_node/gettext-Invocation.html>.
6+
> More information: <https://www.gnu.org/software/gettext/manual/gettext.html#gettext-Invocation>.
77
88
- Get the translation of a string as specified in the domain file (falls back to given `msgid` if no translation exists):
99

pages/common/hello.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# hello
22

33
> Print "Hello, world!", "hello, world" or a customizable text.
4-
> More information: <https://www.gnu.org/software/hello/manual/html_node/Invoking-hello.html>.
4+
> More information: <https://www.gnu.org/software/hello/manual/hello.html#Invoking-hello>.
55
66
- Print "Hello, world!":
77

pages/common/history.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# history
22

33
> Manage command-line history.
4-
> More information: <https://www.gnu.org/software/bash/manual/html_node/Bash-History-Builtins.html#index-history>.
4+
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-history>.
55
66
- Display the commands history list with line numbers:
77

pages/common/ifs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> IFS (Internal Field Separator) is a special environment variable that defines the delimiter used for word splitting in Unix shells.
44
> The default value of IFS is a space, tab, and newline. The three characters serve as delimiters.
5-
> More information: <https://www.gnu.org/software/bash/manual/html_node/Word-Splitting.html>.
5+
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Word-Splitting>.
66
77
- View the current IFS value:
88

pages/common/msgcat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Concatenate and merge multiple `.po` translation files.
44
> Useful in software localization pipelines to combine message catalogs with filtering options.
5-
> More information: <https://www.gnu.org/software/gettext/manual/html_node/msgcat-Invocation.html>.
5+
> More information: <https://www.gnu.org/software/gettext/manual/gettext.html#msgcat-Invocation>.
66
77
- Combine multiple `.po` files into one:
88

pages/common/msgfmt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# msgfmt
22

33
> Compile message catalog to binary format.
4-
> More information: <https://www.gnu.org/software/gettext/manual/html_node/msgfmt-Invocation.html>.
4+
> More information: <https://www.gnu.org/software/gettext/manual/gettext.html#msgfmt-Invocation>.
55
66
- Compile a file to `messages.mo`:
77

0 commit comments

Comments
 (0)