Hexadecimal escapes in shell scripts are not portable across shells (in particular, "dash" does not support them). Write in the CodingGuidelines document that we should be using octal escapes instead. Signed-off-by: Jonathan Tan <jonathantanmy@xxxxxxxxxx> --- Documentation/CodingGuidelines | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/CodingGuidelines b/Documentation/CodingGuidelines index 003393ed16..1c54abd7c5 100644 --- a/Documentation/CodingGuidelines +++ b/Documentation/CodingGuidelines @@ -188,6 +188,9 @@ For shell scripts specifically (not exhaustive): hopefully nobody starts using "local" before they are reimplemented in C ;-) + - Use octal escape sequences (e.g. "\302\242"), not hexadecimal (e.g. + "\xc2\xa2"), as the latter is not portable. + For C programs: -- 2.41.0.162.gfafddb0af9-goog