* [PATCH] Use proper grave accent character @ 2026-04-18 18:55 sebastien peterson boudreau 2026-05-09 2:53 ` Herbert Xu 0 siblings, 1 reply; 8+ messages in thread From: sebastien peterson boudreau @ 2026-04-18 18:55 UTC (permalink / raw) To: dash; +Cc: sebastien peterson boudreau --- src/dash.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dash.1 b/src/dash.1 index dbc34c9..f651a03 100644 --- a/src/dash.1 +++ b/src/dash.1 @@ -293,12 +293,12 @@ Enclosing characters within double quotes preserves the literal meaning of all characters except dollarsign .Pq $ , backquote -.Pq ` , +.Pq \(ga , and backslash .Pq \e . The backslash inside double quotes is historically weird, and serves to quote only the following characters: -.Dl $ ` \*q \e \*[Lt]newline\*[Gt] . +.Dl $ \(ga \*q \e \*[Lt]newline\*[Gt] . Otherwise it remains literal. .Ss Reserved Words Reserved words are words that have special meaning to the @@ -983,7 +983,7 @@ or version .Pc : .Pp -.Dl `command` +.Dl \(gacommand\(ga .Pp The shell expands the command substitution by executing command in a subshell environment and replacing the command substitution with the -- 2.53.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Use proper grave accent character 2026-04-18 18:55 [PATCH] Use proper grave accent character sebastien peterson boudreau @ 2026-05-09 2:53 ` Herbert Xu 2026-05-09 18:20 ` Sebastien Peterson-Boudreau 0 siblings, 1 reply; 8+ messages in thread From: Herbert Xu @ 2026-05-09 2:53 UTC (permalink / raw) To: sebastien peterson boudreau; +Cc: dash sebastien peterson boudreau <sebastien.peterson.boudreau@gmail.com> wrote: > --- > src/dash.1 | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/src/dash.1 b/src/dash.1 > index dbc34c9..f651a03 100644 > --- a/src/dash.1 > +++ b/src/dash.1 > @@ -293,12 +293,12 @@ Enclosing characters within double quotes preserves the literal > meaning of all characters except dollarsign > .Pq $ , > backquote > -.Pq ` , > +.Pq \(ga , Sorry could you please explain why this makes any difference because they look identical to my untrained eye. This explanation should also go into the patch description. Thanks, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Use proper grave accent character 2026-05-09 2:53 ` Herbert Xu @ 2026-05-09 18:20 ` Sebastien Peterson-Boudreau 2026-05-10 9:40 ` Herbert Xu 0 siblings, 1 reply; 8+ messages in thread From: Sebastien Peterson-Boudreau @ 2026-05-09 18:20 UTC (permalink / raw) To: dash > Sorry could you please explain why this makes any difference because > they look identical to my untrained eye. No worries! In the troff(7)* language, the character ` becomes a left quotation on typesetters supporting it, and ' becomes a right quotation. IOW, if your terminal supports unicode (along with a few other variables), `command` in the input code can end up being displayed as ‘command‘ which is not the input the shell expects! The way to typeset the ` character is with either the \` escape sequence or the \(ga character -- both should be portable across different *roff's according to groff_char(7), so I opted for the latter. Hope this clarifies :) --- * manual page might be groff(7) on your system. -- S. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] Use proper grave accent character 2026-05-09 18:20 ` Sebastien Peterson-Boudreau @ 2026-05-10 9:40 ` Herbert Xu 2026-06-01 4:50 ` [PATCH] Use literal > and < characters Sébastien Peterson-Boudreau 2026-06-01 4:53 ` [PATCH] Use proper grave accent character Sébastien Peterson-Boudreau 0 siblings, 2 replies; 8+ messages in thread From: Herbert Xu @ 2026-05-10 9:40 UTC (permalink / raw) To: Sebastien Peterson-Boudreau; +Cc: dash Sebastien Peterson-Boudreau <sebastien.peterson.boudreau@gmail.com> wrote: >> Sorry could you please explain why this makes any difference because >> they look identical to my untrained eye. > > No worries! In the troff(7)* language, the character ` becomes a left > quotation on typesetters supporting it, and ' becomes a right quotation. > > IOW, if your terminal supports unicode (along with a few other variables), > > `command` > > in the input code can end up being displayed as > > ‘command‘ > > which is not the input the shell expects! > The way to typeset the ` character is with either the \` escape sequence > or the \(ga character -- both should be portable across different > *roff's according to groff_char(7), so I opted for the latter. Thanks for the explanation. Please repost the patch with this explanation included in the description. Cheers, -- Email: Herbert Xu <herbert@gondor.apana.org.au> Home Page: http://gondor.apana.org.au/~herbert/ PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] Use literal > and < characters 2026-05-10 9:40 ` Herbert Xu @ 2026-06-01 4:50 ` Sébastien Peterson-Boudreau 2026-06-01 4:51 ` Sébastien Peterson-Boudreau 2026-06-01 4:53 ` [PATCH] Use proper grave accent character Sébastien Peterson-Boudreau 1 sibling, 1 reply; 8+ messages in thread From: Sébastien Peterson-Boudreau @ 2026-06-01 4:50 UTC (permalink / raw) To: dash; +Cc: Sébastien Peterson-Boudreau \*[...] is groff(1) specific syntax, whereas \*(XX is the standard troff(1) syntax. Furthermore, groff_mdoc(1) lists the literal characters `>' and `<' as preferred over the Gt and Lt strings, which are only defined for compatibility with legacy documents. NetBSD also uses the literal characters for their sh(1) manual page (changed in commit 30b9dfc8813e15031a13fc2fc85094b81c71e2b7). --- > Everything looks good except that your emails has no Subject and > so it's been discarded by patchwork: Oops! Seems like I handled my gpg key fine, but goobered mail client config. Crossing my fingers this time... src/dash.1 | 58 +++++++++++++++++++++++++++--------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/dash.1 b/src/dash.1 index dbc34c9..8e1306f 100644 --- a/src/dash.1 +++ b/src/dash.1 @@ -197,7 +197,7 @@ operand and the positional parameters ($1, $2, etc.) set from the remaining argument operands. .It Fl C Em noclobber Don't overwrite existing files with -.Dq \*[Gt] . +.Dq > . .It Fl e Em errexit If not interactive, exit immediately if any untested command fails. The exit status of a command is considered to be @@ -268,9 +268,9 @@ operators (their meaning is discussed later). Following is a list of operators: .Bl -ohang -offset indent .It "Control operators:" -.Dl & && \&( \&) \&; ;; | || \*[Lt]newline\*[Gt] +.Dl & && \&( \&) \&; ;; | || <newline> .It "Redirection operators:" -.Dl \*[Lt] \*[Gt] \*[Gt]| \*[Lt]\*[Lt] \*[Gt]\*[Gt] \*[Lt]& \*[Gt]& \*[Lt]\*[Lt]- \*[Lt]\*[Gt] +.Dl < > >| << >> <& >& <<- <> .El .Ss Quoting Quoting is used to remove the special meaning of certain characters or @@ -298,7 +298,7 @@ and backslash .Pq \e . The backslash inside double quotes is historically weird, and serves to quote only the following characters: -.Dl $ ` \*q \e \*[Lt]newline\*[Gt] . +.Dl $ ` \*q \e <newline> . Otherwise it remains literal. .Ss Reserved Words Reserved words are words that have special meaning to the @@ -391,25 +391,25 @@ is an optional number between 0 and 9, as in .Sq Bq 3 ) , that refers to a file descriptor. .Bl -tag -width aaabsfiles -offset indent -.It [n] Ns \*[Gt] file +.It [n] Ns > file Redirect standard output (or n) to file. -.It [n] Ns \*[Gt]| file +.It [n] Ns >| file Same, but override the .Fl C option. -.It [n] Ns \*[Gt]\*[Gt] file +.It [n] Ns >> file Append standard output (or n) to file. -.It [n] Ns \*[Lt] file +.It [n] Ns < file Redirect standard input (or n) from file. -.It [n1] Ns \*[Lt]& Ns n2 +.It [n1] Ns <& Ns n2 Copy file descriptor n2 as stdin (or fd n1). -.It [n] Ns \*[Lt]&- +.It [n] Ns <&- Close standard input (or n). -.It [n1] Ns \*[Gt]& Ns n2 +.It [n1] Ns >& Ns n2 Copy file descriptor n2 as stdout (or fd n1). -.It [n] Ns \*[Gt]&- +.It [n] Ns >&- Close standard output (or n). -.It [n] Ns \*[Lt]\*[Gt] file +.It [n] Ns <> file Open file for reading and writing on standard input (or n). .El .Pp @@ -417,7 +417,7 @@ The following redirection is often called a .Dq here-document . .Bl -item -offset indent .It -.Li [n]\*[Lt]\*[Lt] delimiter +.Li [n]<< delimiter .Dl here-doc-text ... .Li delimiter .El @@ -431,9 +431,9 @@ subjected to parameter expansion, command substitution, and arithmetic expansion (as described in the section on .Dq Expansions ) . If the operator is -.Dq \*[Lt]\*[Lt]- +.Dq <<- instead of -.Dq \*[Lt]\*[Lt] , +.Dq << , then leading tabs in the here-doc-text are stripped. .Ss Search and Execution There are three types of commands: shell functions, builtin commands, and @@ -567,7 +567,7 @@ Because pipeline assignment of standard input or standard output or both takes place before redirection, it can be modified by redirection. For example: .Pp -.Dl $ command1 2\*[Gt]&1 | command2 +.Dl $ command1 2>&1 | command2 .Pp sends both the standard output and standard error of command1 to the standard input of command2. @@ -698,7 +698,7 @@ Grouping commands together this way allows you to redirect their output as though they were one program: .\".Pp .Bd -literal -offset indent -{ printf \*q hello \*q ; printf \*q world\\n" ; } \*[Gt] greeting +{ printf \*q hello \*q ; printf \*q world\\n" ; } > greeting .Ed .Pp Note that @@ -764,7 +764,7 @@ numeric. A parameter can also be denoted by a number or a special character as explained below. .Ss Positional Parameters -A positional parameter is a parameter denoted by a number (n \*[Gt] 0). +A positional parameter is a parameter denoted by a number (n > 0). The shell sets these initially to the values of its command line arguments that follow the name of the shell script. The @@ -1627,19 +1627,19 @@ Character escape sequences are in backslash notation as defined in The characters and their meanings are as follows: .Bl -tag -width Ds -offset indent .It Cm \ea -Write a \*[Lt]bell\*[Gt] character. +Write a <bell> character. .It Cm \eb -Write a \*[Lt]backspace\*[Gt] character. +Write a <backspace> character. .It Cm \ef -Write a \*[Lt]form-feed\*[Gt] character. +Write a <form-feed> character. .It Cm \en -Write a \*[Lt]new-line\*[Gt] character. +Write a <new-line> character. .It Cm \er -Write a \*[Lt]carriage return\*[Gt] character. +Write a <carriage return> character. .It Cm \et -Write a \*[Lt]tab\*[Gt] character. +Write a <tab> character. .It Cm \ev -Write a \*[Lt]vertical tab\*[Gt] character. +Write a <vertical tab> character. .It Cm \e\e Write a backslash character. .It Cm \e Ns Ar num @@ -2062,13 +2062,13 @@ True if the strings and .Ar \&s\&2 are not identical. -.It Ar \&s\&1 Cm \&\*[Lt] Ar \&s\&2 +.It Ar \&s\&1 Cm \&< Ar \&s\&2 True if string .Ar \&s\&1 comes before .Ar \&s\&2 based on the ASCII value of their characters. -.It Ar \&s\&1 Cm \&\*[Gt] Ar \&s\&2 +.It Ar \&s\&1 Cm \&> Ar \&s\&2 True if string .Ar \&s\&1 comes after @@ -2380,7 +2380,7 @@ unless you are the superuser, in which case it defaults to .Dq #\ . .It Ev PS2 The secondary prompt string, which defaults to -.Dq \*[Gt]\ . +.Dq >\ . .It Ev PS4 Output before each line when execution trace (set -x) is enabled, defaults to -- 2.54.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] Use literal > and < characters 2026-06-01 4:50 ` [PATCH] Use literal > and < characters Sébastien Peterson-Boudreau @ 2026-06-01 4:51 ` Sébastien Peterson-Boudreau 0 siblings, 0 replies; 8+ messages in thread From: Sébastien Peterson-Boudreau @ 2026-06-01 4:51 UTC (permalink / raw) To: dash Email seems okay this time, but looks like it double sent... Sigh. Sorry about that! -- S. ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] Use proper grave accent character 2026-05-10 9:40 ` Herbert Xu 2026-06-01 4:50 ` [PATCH] Use literal > and < characters Sébastien Peterson-Boudreau @ 2026-06-01 4:53 ` Sébastien Peterson-Boudreau 1 sibling, 0 replies; 8+ messages in thread From: Sébastien Peterson-Boudreau @ 2026-06-01 4:53 UTC (permalink / raw) To: dash; +Cc: Sébastien Peterson-Boudreau In the troff(7) (may be groff(7) on your system) input language, the ascii grave accent (backtick) character is interpreted as a left typographers quotation on output devices that support it. Likewise, a ' is interpreted as a right quotation. IOW, if your terminal supports unicode (along with some other variables..), `command` in dash.1 can end up being displayed as ‘command‘ which is not the input the shell expects, and so a user following examples in the manual will be very confused. The way to typeset the grave accent character as it most likely appears on your keyboard, the character the shell expects for command expansion, you must use the troff character \(ga --- src/dash.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/dash.1 b/src/dash.1 index dbc34c9..f651a03 100644 --- a/src/dash.1 +++ b/src/dash.1 @@ -293,12 +293,12 @@ Enclosing characters within double quotes preserves the literal meaning of all characters except dollarsign .Pq $ , backquote -.Pq ` , +.Pq \(ga , and backslash .Pq \e . The backslash inside double quotes is historically weird, and serves to quote only the following characters: -.Dl $ ` \*q \e \*[Lt]newline\*[Gt] . +.Dl $ \(ga \*q \e \*[Lt]newline\*[Gt] . Otherwise it remains literal. .Ss Reserved Words Reserved words are words that have special meaning to the @@ -983,7 +983,7 @@ or version .Pc : .Pp -.Dl `command` +.Dl \(gacommand\(ga .Pp The shell expands the command substitution by executing command in a subshell environment and replacing the command substitution with the -- 2.54.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: (none)
@ 2026-05-31 3:21 Herbert Xu
2026-06-01 4:42 ` [PATCH] Use literal > and < characters Sébastien Peterson-Boudreau
0 siblings, 1 reply; 8+ messages in thread
From: Herbert Xu @ 2026-05-31 3:21 UTC (permalink / raw)
To: Sebastien Peterson-Boudreau; +Cc: dash, seb
Sebastien Peterson-Boudreau <seb@stien.dev> wrote:
>
> Let me know if there is an issue with signing -- as you can see, I'm
> using a new email.
> src/dash.1 | 58 +++++++++++++++++++++++++++---------------------------
> 1 file changed, 29 insertions(+), 29 deletions(-)
Everything looks good except that your email has no Subject and
so it's been discarded by patchwork:
https://lore.kernel.org/dash/ahYVy6WxQoNnb7ym@HQ
Please resend with the correct Subject line.
Thanks,
--
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH] Use literal > and < characters 2026-05-31 3:21 (none) Herbert Xu @ 2026-06-01 4:42 ` Sébastien Peterson-Boudreau 0 siblings, 0 replies; 8+ messages in thread From: Sébastien Peterson-Boudreau @ 2026-06-01 4:42 UTC (permalink / raw) To: dash; +Cc: Sébastien Peterson-Boudreau \*[...] is groff(1) specific syntax, whereas \*(XX is the standard troff(1) syntax. Furthermore, groff_mdoc(1) lists the literal characters `>' and `<' as preferred over the Gt and Lt strings, which are only defined for compatibility with legacy documents. NetBSD also uses the literal characters for their sh(1) manual page (changed in commit 30b9dfc8813e15031a13fc2fc85094b81c71e2b7). --- > Everything looks good except that your emails has no Subject and > so it's been discarded by patchwork: Oops! Seems like I handled my gpg key fine, but goobered mail client config. Crossing my fingers this time... src/dash.1 | 58 +++++++++++++++++++++++++++--------------------------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/src/dash.1 b/src/dash.1 index dbc34c9..8e1306f 100644 --- a/src/dash.1 +++ b/src/dash.1 @@ -197,7 +197,7 @@ operand and the positional parameters ($1, $2, etc.) set from the remaining argument operands. .It Fl C Em noclobber Don't overwrite existing files with -.Dq \*[Gt] . +.Dq > . .It Fl e Em errexit If not interactive, exit immediately if any untested command fails. The exit status of a command is considered to be @@ -268,9 +268,9 @@ operators (their meaning is discussed later). Following is a list of operators: .Bl -ohang -offset indent .It "Control operators:" -.Dl & && \&( \&) \&; ;; | || \*[Lt]newline\*[Gt] +.Dl & && \&( \&) \&; ;; | || <newline> .It "Redirection operators:" -.Dl \*[Lt] \*[Gt] \*[Gt]| \*[Lt]\*[Lt] \*[Gt]\*[Gt] \*[Lt]& \*[Gt]& \*[Lt]\*[Lt]- \*[Lt]\*[Gt] +.Dl < > >| << >> <& >& <<- <> .El .Ss Quoting Quoting is used to remove the special meaning of certain characters or @@ -298,7 +298,7 @@ and backslash .Pq \e . The backslash inside double quotes is historically weird, and serves to quote only the following characters: -.Dl $ ` \*q \e \*[Lt]newline\*[Gt] . +.Dl $ ` \*q \e <newline> . Otherwise it remains literal. .Ss Reserved Words Reserved words are words that have special meaning to the @@ -391,25 +391,25 @@ is an optional number between 0 and 9, as in .Sq Bq 3 ) , that refers to a file descriptor. .Bl -tag -width aaabsfiles -offset indent -.It [n] Ns \*[Gt] file +.It [n] Ns > file Redirect standard output (or n) to file. -.It [n] Ns \*[Gt]| file +.It [n] Ns >| file Same, but override the .Fl C option. -.It [n] Ns \*[Gt]\*[Gt] file +.It [n] Ns >> file Append standard output (or n) to file. -.It [n] Ns \*[Lt] file +.It [n] Ns < file Redirect standard input (or n) from file. -.It [n1] Ns \*[Lt]& Ns n2 +.It [n1] Ns <& Ns n2 Copy file descriptor n2 as stdin (or fd n1). -.It [n] Ns \*[Lt]&- +.It [n] Ns <&- Close standard input (or n). -.It [n1] Ns \*[Gt]& Ns n2 +.It [n1] Ns >& Ns n2 Copy file descriptor n2 as stdout (or fd n1). -.It [n] Ns \*[Gt]&- +.It [n] Ns >&- Close standard output (or n). -.It [n] Ns \*[Lt]\*[Gt] file +.It [n] Ns <> file Open file for reading and writing on standard input (or n). .El .Pp @@ -417,7 +417,7 @@ The following redirection is often called a .Dq here-document . .Bl -item -offset indent .It -.Li [n]\*[Lt]\*[Lt] delimiter +.Li [n]<< delimiter .Dl here-doc-text ... .Li delimiter .El @@ -431,9 +431,9 @@ subjected to parameter expansion, command substitution, and arithmetic expansion (as described in the section on .Dq Expansions ) . If the operator is -.Dq \*[Lt]\*[Lt]- +.Dq <<- instead of -.Dq \*[Lt]\*[Lt] , +.Dq << , then leading tabs in the here-doc-text are stripped. .Ss Search and Execution There are three types of commands: shell functions, builtin commands, and @@ -567,7 +567,7 @@ Because pipeline assignment of standard input or standard output or both takes place before redirection, it can be modified by redirection. For example: .Pp -.Dl $ command1 2\*[Gt]&1 | command2 +.Dl $ command1 2>&1 | command2 .Pp sends both the standard output and standard error of command1 to the standard input of command2. @@ -698,7 +698,7 @@ Grouping commands together this way allows you to redirect their output as though they were one program: .\".Pp .Bd -literal -offset indent -{ printf \*q hello \*q ; printf \*q world\\n" ; } \*[Gt] greeting +{ printf \*q hello \*q ; printf \*q world\\n" ; } > greeting .Ed .Pp Note that @@ -764,7 +764,7 @@ numeric. A parameter can also be denoted by a number or a special character as explained below. .Ss Positional Parameters -A positional parameter is a parameter denoted by a number (n \*[Gt] 0). +A positional parameter is a parameter denoted by a number (n > 0). The shell sets these initially to the values of its command line arguments that follow the name of the shell script. The @@ -1627,19 +1627,19 @@ Character escape sequences are in backslash notation as defined in The characters and their meanings are as follows: .Bl -tag -width Ds -offset indent .It Cm \ea -Write a \*[Lt]bell\*[Gt] character. +Write a <bell> character. .It Cm \eb -Write a \*[Lt]backspace\*[Gt] character. +Write a <backspace> character. .It Cm \ef -Write a \*[Lt]form-feed\*[Gt] character. +Write a <form-feed> character. .It Cm \en -Write a \*[Lt]new-line\*[Gt] character. +Write a <new-line> character. .It Cm \er -Write a \*[Lt]carriage return\*[Gt] character. +Write a <carriage return> character. .It Cm \et -Write a \*[Lt]tab\*[Gt] character. +Write a <tab> character. .It Cm \ev -Write a \*[Lt]vertical tab\*[Gt] character. +Write a <vertical tab> character. .It Cm \e\e Write a backslash character. .It Cm \e Ns Ar num @@ -2062,13 +2062,13 @@ True if the strings and .Ar \&s\&2 are not identical. -.It Ar \&s\&1 Cm \&\*[Lt] Ar \&s\&2 +.It Ar \&s\&1 Cm \&< Ar \&s\&2 True if string .Ar \&s\&1 comes before .Ar \&s\&2 based on the ASCII value of their characters. -.It Ar \&s\&1 Cm \&\*[Gt] Ar \&s\&2 +.It Ar \&s\&1 Cm \&> Ar \&s\&2 True if string .Ar \&s\&1 comes after @@ -2380,7 +2380,7 @@ unless you are the superuser, in which case it defaults to .Dq #\ . .It Ev PS2 The secondary prompt string, which defaults to -.Dq \*[Gt]\ . +.Dq >\ . .It Ev PS4 Output before each line when execution trace (set -x) is enabled, defaults to -- 2.54.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-06-01 4:53 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-18 18:55 [PATCH] Use proper grave accent character sebastien peterson boudreau 2026-05-09 2:53 ` Herbert Xu 2026-05-09 18:20 ` Sebastien Peterson-Boudreau 2026-05-10 9:40 ` Herbert Xu 2026-06-01 4:50 ` [PATCH] Use literal > and < characters Sébastien Peterson-Boudreau 2026-06-01 4:51 ` Sébastien Peterson-Boudreau 2026-06-01 4:53 ` [PATCH] Use proper grave accent character Sébastien Peterson-Boudreau -- strict thread matches above, loose matches on Subject: below -- 2026-05-31 3:21 (none) Herbert Xu 2026-06-01 4:42 ` [PATCH] Use literal > and < characters Sébastien Peterson-Boudreau
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox