Replace `echo -e` with `printf`
From 9e651c3fa43ce4d7e89b3390153e2dcd889c9b8d Mon Sep 17 00:00:00 2001
From: Denton Liu <liu.denton@gmail.com>
Date: Tue, 13 Dec 2022 23:26:37 -0800
This script uses `#!/bin/sh` as its shebang, which means it expects a
POSIX-compliant shell. However, it also uses `echo -e` which is not
POSIX-compliant[0].
Rewrite `echo -e "$arg"` invocations to `printf "$arg\\n"` so that
the script is brought into POSIX compliance.
[0]: https://pubs.opengroup.org/onlinepubs/009604599/utilities/echo.html
[1]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/printf.html
---
lsb_release/src/lsb_release | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)