Re: Suppress newline under cygwin bash

2003-01-29 Thread David Rothenberger
Randall R Schulz wrote: > > This is csh / tcsh's way of suppressing the terminal newline usually > supplied by the "echo" command. It also documented in the man page to > work with the separate echo executable, "/bin/echo.exe", but it does > not do so for me (for whatever reason). The man page i

Re: Suppress newline under cygwin bash

2003-01-27 Thread Gareth Gregor
echo -en "hello" and with a newline, echo -en "hello\n" Gareth On Tue, 28 Jan 2003, Robert Mark Bram wrote: > Howdy all! > > I have noticed that the two ways I have read about to suppress newline > characters in the echo command do not seem to be working. Here is what I > have tried: > >

Re: Suppress newline under cygwin bash

2003-01-27 Thread Randall R Schulz
Robert, At 23:19 2003-01-27, Robert Mark Bram wrote: Howdy all! I have noticed that the two ways I have read about to suppress newline characters in the echo command do not seem to be working. Here is what I have tried: $ echo "hi there\c" hi there\c This is csh / tcsh's way of suppressing th

Suppress newline under cygwin bash

2003-01-27 Thread Robert Mark Bram
Howdy all! I have noticed that the two ways I have read about to suppress newline characters in the echo command do not seem to be working. Here is what I have tried: $ echo "hi there\c" hi there\c $ echo "...using -n." ...using -n. $ Quoted or unquoted, the result is the same. I tried doing a