From: Bernd S. <ber...@in...> - 2007-11-01 16:08:21
|
On Thu, 01 Nov 2007 17:01:07 +0100, Eric Bezault <er...@go...> wrote: > Bernd Schoeller wrote: >> - The help text of the .bat file under windows prints ugly " marks. >> This can be avoided by removing the quotes from the echo statements, >> and instead escaping <, > and | by ^, like this: >> echo usage: bootstrap.bat [-v][--delivery] ^<c_compiler^> >> ^<eiffel_compiler^> >> echo c_compiler: msc ^| lcc-win32 ^| bcc ^| gcc ^| cc ^| icc ^| tcc >> ^| no_c >> echo eiffel_compiler: ge ^| ise ^| se > > Fixed. > > Is there the same problem for the .sh files? No, echo "foo" under Unix prints foo, not "foo". The quotes are interpreted by the shell. Everything is fine here. Bernd |