Bold text


 
Thread Tools Search this Thread
Top Forums Programming Bold text
# 1  
Old 08-24-2005
Bold text

hello,

how do i display the text in the printf statement in bold.

or is there anyway to display the text on the console in bold

thx in advance

svh
# 2  
Old 08-24-2005
Hi,

Give a "tput bold" as the statement before ur printf statement
After printf statement if u no longer want the font to be bold , u can revert back to default settings by "tput sgr0"

Check tput manual too ... tput provides a lot of text manipulations like making it bold, blinking, highlitimg, placing the cursor in a particular postion etc.

Thanks,

SNS
# 3  
Old 08-24-2005
I think he wants to do it inside C. The ANSI escape sequences will do what you want.
Code:
  char ESC=27;
  printf("%c[1m",ESC);  /*- turn on bold */
  printf("%c[0m",ESC); /* turn off bold */


Last edited by jim mcnamara; 08-24-2005 at 11:22 AM..
# 4  
Old 08-29-2005
Bold

thanx both for of for ur reply

thanx a lot

bye take care

svh
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Bold text in Bash and send mail

I have a sample script here I want to bold the word BOLD in the text and send through email. Tried several ways but not seems to working. BODY="Hello. I want to BOLD this" { echo "From: from@gmail.com" echo "To: to@gmail.com" echo "Subject: Texting" ... (1 Reply)
Discussion started by: lpoolfc
1 Replies

2. Shell Programming and Scripting

output text in bold font using SED

hi I want to write a script, while using the SED editor, to output the text, in this case a variable, to the result file but highlighted it in bold, is it possible to do that? can you tell me how? eg. in text.txt sed '$ a\ '$variable' ' <text.txt >text2.txt so it will add the... (2 Replies)
Discussion started by: piynik
2 Replies

3. Shell Programming and Scripting

Making Text Bold

Hi Guys, This is my first query here. I hope you could help. I have a file as below a 1 2 3 4 b 4 5 6 ... I need to print the first column of this in bold. a 1 2 3 4 b 4 5 6 Is it possible, if so, could you please let me know how to do that? I require this because I... (3 Replies)
Discussion started by: praveen.munna
3 Replies

4. Shell Programming and Scripting

Format text to bold from perl script to csv

Hi everyone, is there any way in perl using which we can print the selective words in bold when we write the output to a csv file? Please find the example below 1. Filename: A 2. name age 12 3. city add 23 Line1 should only be bold. Outputs from other files being read in the... (2 Replies)
Discussion started by: ramakanth_burra
2 Replies

5. Shell Programming and Scripting

mailx requirement - email body header in bold and data content in normal text

Dear all- I have a requirement to send an email via email with body content which looks something below- Email body contents -------------------- RequestType: Update DateAcctOpened: 1/5/2010 Note that header information and data content should be normal text.. Please advice on... (5 Replies)
Discussion started by: sureshg_sampat
5 Replies

6. UNIX for Dummies Questions & Answers

Bold Text In Email

Hello, I email some info daily to my employees using a script. But they tend to overlook an important part so I wanted to bold that particular section. Everyone here uses outlook to receive their emails. I would like to know how to send an email to my employees with some parts in bold. (3 Replies)
Discussion started by: Amonkira
3 Replies

7. Shell Programming and Scripting

how can i bold a text

Dear i want to bold a text using shell script. please give sample.. Thanks rex (1 Reply)
Discussion started by: jrex1983
1 Replies

8. UNIX for Dummies Questions & Answers

how to make a bold text in vi

pls disregard got my question answered . as you can't do bold in vi (0 Replies)
Discussion started by: xzyan
0 Replies

9. UNIX for Dummies Questions & Answers

write data into a text file in bold format

Hi, can anyone help to write data into a text file in bold format and rollback to actual format. Thanks, Regards, Milton Y. (1 Reply)
Discussion started by: miltony
1 Replies

10. UNIX for Dummies Questions & Answers

Bold Text?

Hello, On the linux box I use at work, the directories are bold type to distinguish them. Is there a way to make certain words in a text file bold? Thanks! (4 Replies)
Discussion started by: Atama
4 Replies
Login or Register to Ask a Question