Bold characters in c shell

Hi,

Can someone tell me how to display characters in Bold in C shell??

did you tried tput smso and tput rmso??

Yes, I tried that, but tput gives me that word in highlighted format.
I dont want that way.

Or if you can tell me how can I change the font/color, even that would be fine.

echo "\033[1;1mwhatever\033[1;m"
not sure that it will work in c shell just try..

No, it doesnt!!! This is again ksh syntax..

just go through this...

Have you looked at this?

Hey thanks very much!!
set e="`echo x | tr x [\\033](file://\\033)`"
This worked :))

Hey thanks very much..
set e="`echo x | tr x \\033`"
This worked.. :slight_smile:

hey thanks very much..
set e="`echo x | tr x [\\033](file://\\033)`" this worked :slight_smile: