Hi,
thanks for your report. It seems that the echo command behaves a bit differently between our systems. In my system, "\b" was interpreted as backspace, and I had to use double backslash "\\b" to prevent this.
The following is probably more portable way to express the same thing. Option -E suppresses the parsing of escape sequences.
/bin/echo -E "\begin{document}" >> "/tmp/$name.tex"
best regards
|