> 1) Many implementations of echo will interpret parts of their argument(s), > in addition to processing options like -n. If you want to print a > variable's contents to standard output without *any* interpretation, > use printf. > > printf %s "$myvar" > printf '%s\n' "$myvar"
Interesting. I used the following instead: bugit_echo () { # POSIX `echo` has all kinds of "features" we don't want, such as # handling of \c and -n. cat <<ENDDOC $* ENDDOC } -- Stefan