Bold Text?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Bold Text?
# 1  
Old 04-11-2002
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!
# 2  
Old 04-11-2002
A text file is just plain text. it may be possible to include certain escape sequences so that your text is highlighted or colored when viewed using 'less' or 'more'. Please search the forum for my previous posts on ANSI color codes.
# 3  
Old 04-11-2002
Ok, I found the your post and I'm able to see the bold text and the affect I'm looking for when I do echo ^[[1mhello^[[0m on the command line.

But how can I do that in a file? I mean when I place "echo ^[[1mhello^[[0m" in a file, it obviously just shows up as "echo ^[[1mhello^[[0m" when I view it, instead of the bold text I would get by doing it on the command line.

Thanks
# 4  
Old 04-12-2002
Are you using ctrl+[, or just typing ^[ ?
Also, your terminal or the viewing program may be to blame.
I was able to recreate this:
ls --color=always > file
vi file results in:
Code:
^[[00m^[[01;34mDesktop^[[00m/
^[[01;34mMail^[[00m/
^[[01;34mNews^[[00m/
^[[01;34mbin^[[00m/
[...]

While cat file will show it in color.

By the way, this is on a Linux system, with GNU ls, using a color xterm emulator.
# 5  
Old 04-12-2002
Got it. Thanks!
 
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. Programming

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 (3 Replies)
Discussion started by: svh
3 Replies
Login or Register to Ask a Question