Created by: detjensrobert
echo -e is supposed to interpret escape sequences e.g. the \n in the echoed string, but is being interpreted as a literal and breaks the shebang.
$ docker run --rm onecommons/unfurl:43ffcf5-podman sh -c 'cat $(which docker)'
-e #!/bin/sh
exec /usr/bin/podman $@
Echo without -e is interpreting the newline anyway, so it can be removed.