Bash Command

In my script I use this command \c when printing(echo) out statements but this only works in the Korn Shell(ksh).
I need the same command to be used in the Bash Shell, is there one out there?

Thanks,

the A.

The \c argument to echo will work in bash also.

Some version of echo also support the -n switch to suppress newlines.

ex:

$ echo -n Hello.
Hello.$