Note ANSI-C Quoting bash in MOTD (#4085)

This commit is contained in:
Echo Nar
2026-05-30 10:40:16 -05:00
committed by GitHub
parent 544382d5d6
commit cbd56fd012
+6
View File
@@ -78,6 +78,12 @@ To produce a multi-line MOTD, embed a newline character as `\n` in the string, s
-e MOTD="Line one\nLine two"
```
From bash shell
```
-e MOTD=$'Line one\nLine two'
```
or within a compose file
```yaml