pages/common/*: remove www from links (#13652)

pull/28/head
Sebastiaan Speck 2024-09-10 20:36:38 +02:00 committed by GitHub
parent da8862ffb4
commit aff59b6199
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# Exclamation mark # Exclamation mark
> Bash builtin to substitute with a command found in history. > Bash builtin to substitute with a command found in history.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>. > More information: <https://gnu.org/software/bash/manual/bash.html#Event-Designators>.
- Substitute with the previous command and run it with `sudo`: - Substitute with the previous command and run it with `sudo`:

View File

@ -2,7 +2,7 @@
> Check file types and compare values. > Check file types and compare values.
> Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false. > Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-test>. > More information: <https://gnu.org/software/bash/manual/bash.html#index-test>.
- Test if a given variable is equal/not equal to the specified string: - Test if a given variable is equal/not equal to the specified string:

View File

@ -2,7 +2,7 @@
> Check file types and compare values. > Check file types and compare values.
> Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false. > Returns a status of 0 if the condition evaluates to true, 1 if it evaluates to false.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#index-_005b_005b>. > More information: <https://gnu.org/software/bash/manual/bash.html#index-_005b_005b>.
- Test if a given variable is equal/not equal to the specified string: - Test if a given variable is equal/not equal to the specified string:

View File

@ -2,7 +2,7 @@
> Bash builtin to quick substitute a string in the previous command and run the result. > Bash builtin to quick substitute a string in the previous command and run the result.
> Equivalent to `!!:s^string1^string2`. > Equivalent to `!!:s^string1^string2`.
> More information: <https://www.gnu.org/software/bash/manual/bash.html#Event-Designators>. > More information: <https://gnu.org/software/bash/manual/bash.html#Event-Designators>.
- Run the previous command replacing `string1` with `string2`: - Run the previous command replacing `string1` with `string2`: